From b261dde77f0168f6519da6ac2680ddfd5754c4d5 Mon Sep 17 00:00:00 2001 From: Frizi Date: Tue, 15 Jun 2021 18:01:28 +0200 Subject: [PATCH] [glsl-in] revert test case change --- tests/in/glsl/931-constant-emitting.vert | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/in/glsl/931-constant-emitting.vert b/tests/in/glsl/931-constant-emitting.vert index 6844a7a7fa..b780eb7ac9 100644 --- a/tests/in/glsl/931-constant-emitting.vert +++ b/tests/in/glsl/931-constant-emitting.vert @@ -3,8 +3,8 @@ // FIX: #933 #version 450 -const float constant = 10.0; +const int constant = 10; float function() { - return constant; + return 0.0; }