mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp.git
synced 2025-10-30 08:03:03 +00:00
6 lines
93 B
HLSL
6 lines
93 B
HLSL
void PSMain(
|
|
out float4 resultColor : SV_TARGET
|
|
)
|
|
{
|
|
resultColor = float4(1,0,0,1);
|
|
}
|