aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a6-harold/shaders/artsy.vert
diff options
context:
space:
mode:
authorKT <tran0563@umn.edu>2021-09-06 19:07:33 -0500
committerKT <tran0563@umn.edu>2021-09-06 19:07:33 -0500
commitcccd3186305915d92b1751dc616979d64116a4aa (patch)
tree5dd4834daef547cd45fc0b643f44a10b581de0ad /dev/a6-harold/shaders/artsy.vert
parentAdded missing images for the A6 worksheet (diff)
downloadcsci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.gz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.bz2
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.lz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.xz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.zst
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.zip
Upload a1
Diffstat (limited to 'dev/a6-harold/shaders/artsy.vert')
-rw-r--r--dev/a6-harold/shaders/artsy.vert17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev/a6-harold/shaders/artsy.vert b/dev/a6-harold/shaders/artsy.vert
deleted file mode 100644
index cd9b998..0000000
--- a/dev/a6-harold/shaders/artsy.vert
+++ /dev/null
@@ -1,17 +0,0 @@
-#version 330
-
-uniform mat4 modelViewMatrix;
-uniform mat4 normalMatrix;
-uniform mat4 projectionMatrix;
-
-layout(location = 0) in vec3 vertex;
-layout(location = 1) in vec3 normal;
-
-out vec3 Position;
-out vec3 Normal;
-
-void main() {
- Position = (modelViewMatrix * vec4(vertex,1)).xyz;
- Normal = normalize((normalMatrix * vec4(normal,0)).xyz);
- gl_Position = projectionMatrix * modelViewMatrix * vec4(vertex,1);
-}