Files
2026-07-13 13:13:17 +08:00

13 lines
209 B
HLSL

cbuffer TimeConstants : register(b0)
{
float globalTime;
float time;
float2 dummy;
}
float4 main(float4 input : SV_POSITION) : SV_TARGET
{
return float4(1,sin(globalTime)*0.5 + 0.5,1,0.7);
}