mirror of
https://github.com/narzoul/DDrawCompat
synced 2024-12-30 08:55:36 +01:00
7 lines
127 B
HLSL
7 lines
127 B
HLSL
sampler2D s_texture : register(s0);
|
|
|
|
float4 main(float2 texCoord : TEXCOORD0) : COLOR0
|
|
{
|
|
return tex2D(s_texture, texCoord);
|
|
}
|