mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2024-12-28 06:21:31 +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);
|
||
|
}
|