mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
7 lines
112 B
Plaintext
7 lines
112 B
Plaintext
|
float4 main(
|
||
|
float2 vTexcoord : TEXCOORD0,
|
||
|
uniform sampler2D tex)
|
||
|
{
|
||
|
return tex2D(tex, vTexcoord);
|
||
|
}
|