summary refs log tree commit diff
path: root/misc/ps3/ps_textured.fcg
blob: d8007120086753a46a69d1e2b0f552db703cea62 (plain)
1
2
3
4
5
6
7
8
9
float4 main
(
	float4 in_color : COLOR,
	float2 in_tex0  : TEXCOORD0,
	uniform sampler2D tex
) : COLOR
{
	return tex2D(tex, in_tex0) * in_color;
}