summary refs log tree commit diff
path: root/misc/ps3/ps_textured.fcg
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2024-06-16 10:35:45 +0300
committerWlodekM <[email protected]>2024-06-16 10:35:45 +0300
commitabef6da56913f1c55528103e60a50451a39628b1 (patch)
treeb3c8092471ecbb73e568cd0d336efa0e7871ee8d /misc/ps3/ps_textured.fcg
initial commit
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