aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a6-harold/shaders/stroke3d.vert
diff options
context:
space:
mode:
authorKiet Tran <kietatr@gmail.com>2021-11-29 13:36:54 -0600
committerKiet Tran <kietatr@gmail.com>2021-11-29 13:36:54 -0600
commit3e757dbc71682972899a48651710c5d8280c3cee (patch)
treed0c5ebba6dbad61920e07b2eae5843c1a2a2766d /dev/a6-harold/shaders/stroke3d.vert
parentUpdate artrender_app.cc (diff)
downloadcsci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar.gz
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar.bz2
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar.lz
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar.xz
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.tar.zst
csci4611-3e757dbc71682972899a48651710c5d8280c3cee.zip
Publish A6
Diffstat (limited to '')
-rw-r--r--dev/a6-harold/shaders/stroke3d.vert10
1 files changed, 10 insertions, 0 deletions
diff --git a/dev/a6-harold/shaders/stroke3d.vert b/dev/a6-harold/shaders/stroke3d.vert
new file mode 100644
index 0000000..d333c4f
--- /dev/null
+++ b/dev/a6-harold/shaders/stroke3d.vert
@@ -0,0 +1,10 @@
+#version 330
+
+uniform mat4 modelViewMatrix;
+uniform mat4 projectionMatrix;
+
+layout(location = 0) in vec3 vertex;
+
+void main() {
+ gl_Position = projectionMatrix * modelViewMatrix * vec4(vertex,1);
+}