mirror of
https://github.com/libretro/RetroArch
synced 2025-01-18 13:23:40 +00:00
8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
|
float4 main(
|
||
|
float2 vTexcoord : TEXCOORD0,
|
||
|
uniform sampler2D tex,
|
||
|
uniform float4 uTintColor)
|
||
|
{
|
||
|
return tex2D(tex, vTexcoord) * uTintColor;
|
||
|
}
|