aboutsummaryrefslogtreecommitdiff
path: root/spirv.vert
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-18 11:17:07 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-18 11:17:07 +0200
commit1b1314ed856f8380726fd07cde5dd73125101ef2 (patch)
treef527f0b88abd6243710a0bb38343c9bbbadb445f /spirv.vert
parent1f24a2196641f7d832300fd45c7f5e89559ecc34 (diff)
more problem research/isolation
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);
+}
+