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/outline.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/outline.vert')
-rw-r--r-- | dev/a6-harold/shaders/outline.vert | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/dev/a6-harold/shaders/outline.vert b/dev/a6-harold/shaders/outline.vert new file mode 100644 index 0000000..a6073e5 --- /dev/null +++ b/dev/a6-harold/shaders/outline.vert @@ -0,0 +1,23 @@ +#version 330 + +uniform mat4 modelViewMatrix; +uniform mat4 normalMatrix; +uniform mat4 projectionMatrix; +uniform float thickness; + +layout(location = 0) in vec3 vertex; +layout(location = 1) in vec3 normal; +layout(location = 2) in vec3 leftNormal; +layout(location = 3) in vec3 rightNormal; + +void main() { + vec3 p = (modelViewMatrix * vec4(vertex,1)).xyz; + vec3 e = -p; + vec3 nl = (normalMatrix * vec4(leftNormal,0)).xyz; + vec3 nr = (normalMatrix * vec4(rightNormal,0)).xyz; + vec3 v = vertex; + if (dot(e,nl) * dot(e,nr) < 0.0) { + v += thickness*normal; + } + gl_Position = projectionMatrix * modelViewMatrix * vec4(v,1); +} |