diff options
Diffstat (limited to 'advanced_lighting/9.ssao/ssao.vert')
-rw-r--r-- | advanced_lighting/9.ssao/ssao.vert | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/advanced_lighting/9.ssao/ssao.vert b/advanced_lighting/9.ssao/ssao.vert index 3ce6fb2..eed3be3 100644 --- a/advanced_lighting/9.ssao/ssao.vert +++ b/advanced_lighting/9.ssao/ssao.vert @@ -7,10 +7,8 @@ out vert_t { vec2 tex_coords; } vert; -uniform mat4 model; - void main() { vert.tex_coords = tex_coords; - gl_Position = model * vec4(position, 1.0); + gl_Position = vec4(position, 1.0); } |