diff options
Diffstat (limited to 'src/demos/es2/shader/redsquare.vp')
-rw-r--r-- | src/demos/es2/shader/redsquare.vp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/demos/es2/shader/redsquare.vp b/src/demos/es2/shader/redsquare.vp new file mode 100644 index 0000000..0348e90 --- /dev/null +++ b/src/demos/es2/shader/redsquare.vp @@ -0,0 +1,19 @@ + +#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; +varying HIGHP vec4 frontColor; + +void main(void) +{ + frontColor=mgl_Color; + gl_Position = mgl_PMVMatrix[0] * mgl_PMVMatrix[1] * mgl_Vertex; +} |