summaryrefslogtreecommitdiffstats
path: root/src/demos/es2/openmax/shader/moviesimple.fp
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/es2/openmax/shader/moviesimple.fp')
-rw-r--r--src/demos/es2/openmax/shader/moviesimple.fp21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/demos/es2/openmax/shader/moviesimple.fp b/src/demos/es2/openmax/shader/moviesimple.fp
new file mode 100644
index 0000000..c711641
--- /dev/null
+++ b/src/demos/es2/openmax/shader/moviesimple.fp
@@ -0,0 +1,21 @@
+
+#ifdef GL_ES
+ #define MEDIUMP mediump
+ #define HIGHP highp
+#else
+ #define MEDIUMP
+ #define HIGHP
+#endif
+
+uniform sampler2D mgl_ActiveTexture;
+varying HIGHP vec4 mgl_texCoord;
+varying HIGHP vec4 frontColor;
+
+void main (void)
+{
+ vec4 texColor = texture2D(mgl_ActiveTexture, mgl_texCoord.st);
+
+ // mix frontColor with texture ..
+ gl_FragColor = vec4(frontColor.rgb*texColor.rgb, frontColor.a);
+}
+