aboutsummaryrefslogtreecommitdiffstats
path: root/vert.glsl
diff options
context:
space:
mode:
authorTomasz Kramkowski <tk@the-tk.com>2018-03-26 16:38:09 +0100
committerTomasz Kramkowski <tk@the-tk.com>2018-03-26 19:49:24 +0100
commitca761a910c25197b10aeadcb0120dae132442d56 (patch)
treef28b134d78b87628178fb28130728c56c9949f26 /vert.glsl
downloadfaqe-ca761a910c25197b10aeadcb0120dae132442d56.tar.gz
faqe-ca761a910c25197b10aeadcb0120dae132442d56.tar.xz
faqe-ca761a910c25197b10aeadcb0120dae132442d56.zip
init commit
Diffstat (limited to 'vert.glsl')
-rw-r--r--vert.glsl9
1 files changed, 9 insertions, 0 deletions
diff --git a/vert.glsl b/vert.glsl
new file mode 100644
index 0000000..1730d35
--- /dev/null
+++ b/vert.glsl
@@ -0,0 +1,9 @@
+// Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
+// SPDX-License-Identifier: MIT
+#version 330 core
+layout (location = 0) in vec3 pos;
+
+void main()
+{
+ gl_Position = vec4(pos, 1.0);
+}