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/gbuffer.frag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'advanced_lighting/9.ssao/gbuffer.frag') diff --git a/advanced_lighting/9.ssao/gbuffer.frag b/advanced_lighting/9.ssao/gbuffer.frag index 7755107..fd90740 100644 --- a/advanced_lighting/9.ssao/gbuffer.frag +++ b/advanced_lighting/9.ssao/gbuffer.frag @@ -7,11 +7,11 @@ in vert_t { layout(location = 0) out vec3 position; layout(location = 1) out vec3 normal; -layout(location = 2) out vec3 albedo; +layout(location = 2) out vec3 color; void main() { position = vert.position; normal = normalize(vert.normal); - albedo.rgb = vec3(0.95); + color.rgb = vec3(0.95); } -- cgit v1.2.3-70-g09d2