CodeWalker/CodeWalker.Shaders/BoundsPS.hlsl
2019-11-18 16:25:40 +01:00

10 lines
103 B
HLSL

cbuffer PSVars : register(b0)
{
float4 Colour;
}
float4 main() : SV_TARGET
{
return Colour;
}