mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 14:47:22 +08:00
10 lines
103 B
HLSL
10 lines
103 B
HLSL
|
cbuffer PSVars : register(b0)
|
||
|
{
|
||
|
float4 Colour;
|
||
|
}
|
||
|
|
||
|
float4 main() : SV_TARGET
|
||
|
{
|
||
|
return Colour;
|
||
|
}
|