aboutsummaryrefslogtreecommitdiff
path: root/hello.vert
diff options
context:
space:
mode:
Diffstat (limited to 'hello.vert')
-rw-r--r--hello.vert7
1 files changed, 0 insertions, 7 deletions
diff --git a/hello.vert b/hello.vert
deleted file mode 100644
index 4af0bdf..0000000
--- a/hello.vert
+++ /dev/null
@@ -1,7 +0,0 @@
-#version 330 core
-layout (location = 0) in vec3 aPos;
-
-void main() {
- gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
-}
-