diff options
Diffstat (limited to 'src/simple150.vert')
| -rw-r--r-- | src/simple150.vert | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/simple150.vert b/src/simple150.vert new file mode 100644 index 00000000..8c23b731 --- /dev/null +++ b/src/simple150.vert @@ -0,0 +1,21 @@ +#version 150 + +uniform mat4 projectionMatrix; +uniform mat4 modelviewMatrix; + +in vec3 vertexPosition; +in vec2 vertexTexCoord; +in vec4 vertexColor; + +out vec2 fragTexCoord; +out vec4 fragColor; + +void main() +{ + // Pass some variables to the fragment shader + fragTexCoord = vertexTexCoord; + fragColor = vertexColor; + + // Apply all matrix transformations to vertex + gl_Position = projectionMatrix * modelviewMatrix * vec4(vertexPosition, 1.0); +}
\ No newline at end of file |
