summaryrefslogtreecommitdiffstats
path: root/examples/tessellation-modes/shaders/passthru.vert
blob: 71875a55f4b22962ddbb7c255dfcbd7f3a30efb6 (plain)
1
2
3
4
5
6
7
8
9
10
#version 400 core

in vec3 vertexPosition;

void main()
{
    // We do the transformations later in the
    // tessellation evaluation shader
    gl_Position = vec4( vertexPosition, 1.0 );
}