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

7 lines
118 B
HLSL

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