mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2026-05-15 10:44:44 +08:00
Moved Shaders src to CodeWalker.Shaders
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
|
||||
struct VS_OUTPUT
|
||||
{
|
||||
float4 Position : SV_POSITION;
|
||||
float4 Colour : COLOR0;
|
||||
float3 Normal : NORMAL;
|
||||
};
|
||||
|
||||
|
||||
float4 main(VS_OUTPUT input) : SV_TARGET
|
||||
{
|
||||
float4 c = input.Colour;
|
||||
|
||||
return float4(c.rgb, 1.0f);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user