CodeWalker/CodeWalker.Shaders/BoundsPS.hlsl

10 lines
103 B
HLSL
Raw Normal View History

2017-09-21 18:33:05 +08:00
cbuffer PSVars : register(b0)
{
float4 Colour;
}
float4 main() : SV_TARGET
{
return Colour;
}