RetroArch/deps/libvita2d/shader/texture_tint_f.cg
2016-08-01 00:50:13 +02:00

8 lines
144 B
Plaintext

float4 main(
float2 vTexcoord : TEXCOORD0,
uniform sampler2D tex,
uniform float4 uTintColor)
{
return tex2D(tex, vTexcoord) * uTintColor;
}