aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01.vp
blob: bc9ecb41ee6f0bac50b5c7d2ed0ab7c4d512cb83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//#version 100

uniform mat4 mgl_PMVMatrix[2];
attribute vec4 v_position;
attribute vec2 texCoord; 

varying vec2 v_texCoord;

void main(void)
{
  gl_Position = mgl_PMVMatrix[0] * mgl_PMVMatrix[1] * v_position;
  v_texCoord = texCoord.st;
}