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

12 lines
170 B
HLSL

#include "common.hlsli"
struct v2p
{
float2 tc0 : TEXCOORD0; // base
};
// Pixel
float4 main_ps_1_1(v2p I) : COLOR
{
return tex2D(s_base, I.tc0);
}