diff options
Diffstat (limited to '')
-rw-r--r-- | graphics/simpleVS.vs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/graphics/simpleVS.vs b/graphics/simpleVS.vs new file mode 100644 index 0000000..deae931 --- /dev/null +++ b/graphics/simpleVS.vs @@ -0,0 +1,8 @@ +#version 330 core + +layout (location = 0) in vec3 position; + +void main() +{ + gl_Position = vec4(position.x, position.y, position.z, 1.0); +}
\ No newline at end of file |