diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-07-15 16:15:26 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-07-15 16:15:26 +0500 |
commit | 6f9ab1f55fd54beab7f0999a69b80ef92fe63722 (patch) | |
tree | d75178447d4b81d60c06fa223fe9b7c193a25a51 /advanced_lighting/9.ssao/gbuffer.frag | |
parent | 9d944f26d359e4bc1ffd8e44350b0df9f0935b18 (diff) |
finish ssao
Diffstat (limited to 'advanced_lighting/9.ssao/gbuffer.frag')
-rw-r--r-- | advanced_lighting/9.ssao/gbuffer.frag | 4 |
1 files changed, 2 insertions, 2 deletions
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); } |