Zelda64Recomp/shaders/InterfacePS.hlsl

7 lines
93 B
HLSL
Raw Normal View History

void PSMain(
out float4 resultColor : SV_TARGET
)
{
resultColor = float4(1,0,0,1);
}