   // Source code of vertex shader
   uniform mat4 mvpMatrix;
   attribute vec4 vPosition;
   void main() { 
      gl_Position = mvpMatrix * vPosition;
   }
