summary refs log tree commit diff
path: root/misc/vita/textured_f.cg
blob: a59b804e6a7ee286e4b9e1961d406c55a58715e5 (plain)
1
2
3
4
5
6
7
8
9
float4 main
(
	uniform sampler2D tex,
	float4 out_color    : COLOR,
	float2 out_texcoord : TEXCOORD0
) : COLOR
{
	return tex2D(tex, out_texcoord) * out_color;
}