From 5479327430fe3091fb49f78e0b8d6d3c08b12617 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 25 Nov 2021 00:22:08 +0200 Subject: [PATCH] Fix a GLSL testcase The constant IDs got perturbed in 8c379c40. --- tests/glsl/generated_name_reuse.glsl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/glsl/generated_name_reuse.glsl b/tests/glsl/generated_name_reuse.glsl index f4fc22d2..d1468e3c 100644 --- a/tests/glsl/generated_name_reuse.glsl +++ b/tests/glsl/generated_name_reuse.glsl @@ -69,8 +69,8 @@ layout(binding=57) uniform LightParameters vec3 ambient; vec4 light_position; }; -layout(constant_id=669465692) const bool use_light = true; -layout(constant_id=1735871552) const bool use_ambient = true; +layout(constant_id=669465691) const bool use_light = true; +layout(constant_id=1735871551) const bool use_ambient = true; layout(location=0) out vec4 frag_color; layout(location=1) in vec3 world_normal; layout(location=0) in vec4 world_vertex; -- 2.43.0