From: Mikko Rasa Date: Fri, 29 Dec 2023 07:31:30 +0000 (+0200) Subject: Fix a test case due to earlier changes X-Git-Url: https://git.tdb.fi/?a=commitdiff_plain;h=5e940488a1b6c87236ac7dc2e20a5f1e88e89e4c;p=libs%2Fgl.git Fix a test case due to earlier changes Commit 9f53f66 altered the order of generated declarations --- 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;