summary refs log tree commit diff
path: root/misc/ps3/ps_textured.fcg
diff options
context:
space:
mode:
Diffstat (limited to 'misc/ps3/ps_textured.fcg')
-rw-r--r--misc/ps3/ps_textured.fcg9
1 files changed, 9 insertions, 0 deletions
diff --git a/misc/ps3/ps_textured.fcg b/misc/ps3/ps_textured.fcg
new file mode 100644
index 0000000..d800712
--- /dev/null
+++ b/misc/ps3/ps_textured.fcg
@@ -0,0 +1,9 @@
+float4 main
+(
+	float4 in_color : COLOR,
+	float2 in_tex0  : TEXCOORD0,
+	uniform sampler2D tex
+) : COLOR
+{
+	return tex2D(tex, in_tex0) * in_color;
+}
\ No newline at end of file