e4s-game/gamedata/shaders/r2/copy_p.ps.hlsl
2026-06-18 01:18:29 +03:00

7 lines
122 B
HLSL

#include "common.hlsli"
// Pixel
float4 main(float4 tc : TEXCOORD0) : COLOR
{
return tex2Dproj(s_base, tc);
}