From 5e940488a1b6c87236ac7dc2e20a5f1e88e89e4c Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Fri, 29 Dec 2023 09:31:30 +0200 Subject: [PATCH] Fix a test case due to earlier changes Commit 9f53f66 altered the order of generated declarations --- tests/glsl/passthrough_declaration_order.glsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/glsl/passthrough_declaration_order.glsl b/tests/glsl/passthrough_declaration_order.glsl index ab4c2a98..72864110 100644 --- a/tests/glsl/passthrough_declaration_order.glsl +++ b/tests/glsl/passthrough_declaration_order.glsl @@ -24,8 +24,8 @@ void main() /* Expected output: vertex layout(location=0) in vec4 position; -layout(location=1) in vec4 color; layout(location=0) out vec4 _vs_out_color; +layout(location=1) in vec4 color; void main() { gl_Position = position; -- 2.45.2