summaryrefslogtreecommitdiff
path: root/advanced_lighting/9.ssao/gbuffer.frag
diff options
context:
space:
mode:
Diffstat (limited to 'advanced_lighting/9.ssao/gbuffer.frag')
-rw-r--r--advanced_lighting/9.ssao/gbuffer.frag4
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);
}