From 6f9ab1f55fd54beab7f0999a69b80ef92fe63722 Mon Sep 17 00:00:00 2001 From: pryazha Date: Tue, 15 Jul 2025 16:15:26 +0500 Subject: finish ssao --- advanced_lighting/9.ssao/ssao.vert | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'advanced_lighting/9.ssao/ssao.vert') 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); } -- cgit v1.2.3-70-g09d2