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