diff options
author | Sven Gothel <[email protected]> | 2012-04-09 22:11:51 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-04-09 22:11:51 +0200 |
commit | 7278e62941a81d374eb2d38aa69ab8fe69ab2a1f (patch) | |
tree | 0d39ad65e4a5b575d000e3942f6b9c06c923238d /src/demos/es2/openmax/shader/moviesimple.vp | |
parent | 5f23b0ca30316804c5065366c631c8290af4c29f (diff) |
Removed obsolete openmax demos. JOGL has demo/test code for GLMediaPlayer
Diffstat (limited to 'src/demos/es2/openmax/shader/moviesimple.vp')
-rw-r--r-- | src/demos/es2/openmax/shader/moviesimple.vp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/demos/es2/openmax/shader/moviesimple.vp b/src/demos/es2/openmax/shader/moviesimple.vp deleted file mode 100644 index 0b78eb9..0000000 --- a/src/demos/es2/openmax/shader/moviesimple.vp +++ /dev/null @@ -1,22 +0,0 @@ - -#ifdef GL_ES - #define MEDIUMP mediump - #define HIGHP highp -#else - #define MEDIUMP - #define HIGHP -#endif - -uniform MEDIUMP mat4 mgl_PMVMatrix[2]; -attribute HIGHP vec4 mgl_Vertex; -attribute HIGHP vec4 mgl_Color; -attribute HIGHP vec4 mgl_MultiTexCoord; -varying HIGHP vec4 frontColor; -varying HIGHP vec4 mgl_texCoord; - -void main(void) -{ - frontColor=mgl_Color; - mgl_texCoord = mgl_MultiTexCoord; - gl_Position = mgl_PMVMatrix[0] * mgl_PMVMatrix[1] * mgl_Vertex; -} |