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