aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/graph/curve/opengl/shader/curverenderer01-xxx.vp
blob: 64a6835ec0d3b60a5100105cc7152abf6fa4b6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//Copyright 2010 JogAmp Community. All rights reserved.

#include uniforms.glsl
#include attributes.glsl
#include varyings.glsl

void main(void)
{
  // gl_Position = gcu_PMVMatrix[0] * gcu_PMVMatrix[1] * vec4(gca_Vertices, 1);
  gl_Position = gcu_PMVMatrix[0] * gcu_PMVMatrix[1] * gca_Vertices;
  gcv_TexCoord = gca_TexCoords;
}