CodeWalker/Shaders/SkySunPS.hlsl

11 lines
104 B
HLSL
Raw Normal View History

2018-03-14 10:28:58 +08:00
cbuffer PSSunVars : register(b0)
{
float4 Colour;
}
float4 main() : SV_TARGET
{
return Colour;
}