mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2024-12-27 12:19:06 +00:00
7 lines
93 B
HLSL
7 lines
93 B
HLSL
void PSMain(
|
|
out float4 resultColor : SV_TARGET
|
|
)
|
|
{
|
|
resultColor = float4(1,0,0,1);
|
|
}
|