diff options
author | Kiet Tran <kietatr@gmail.com> | 2021-11-29 13:36:54 -0600 |
---|---|---|
committer | Kiet Tran <kietatr@gmail.com> | 2021-11-29 13:36:54 -0600 |
commit | 3e757dbc71682972899a48651710c5d8280c3cee (patch) | |
tree | d0c5ebba6dbad61920e07b2eae5843c1a2a2766d /dev/a6-harold/shaders/artsy.vert | |
parent | Update artrender_app.cc (diff) | |
download | csci4611-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 'dev/a6-harold/shaders/artsy.vert')
-rw-r--r-- | dev/a6-harold/shaders/artsy.vert | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/dev/a6-harold/shaders/artsy.vert b/dev/a6-harold/shaders/artsy.vert new file mode 100644 index 0000000..cd9b998 --- /dev/null +++ b/dev/a6-harold/shaders/artsy.vert @@ -0,0 +1,17 @@ +#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); +} |