RetroArch/deps/libvita2d/shader/texture_tint_f.cg

8 lines
144 B
Plaintext
Raw Normal View History

2016-07-31 22:43:38 +00:00
float4 main(
float2 vTexcoord : TEXCOORD0,
uniform sampler2D tex,
uniform float4 uTintColor)
{
return tex2D(tex, vTexcoord) * uTintColor;
}