From 50c27a0a1701005ab514d8c110241e01420b92a6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sat, 4 Jul 2020 14:01:12 -0400 Subject: [PATCH] glsl: fix the type of ir_constant_data::u16 Reviewed-by: Alyssa Rosenzweig Part-of: --- src/compiler/glsl/ir.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/glsl/ir.h b/src/compiler/glsl/ir.h index ca91150b576..e2e46adc855 100644 --- a/src/compiler/glsl/ir.h +++ b/src/compiler/glsl/ir.h @@ -2214,7 +2214,7 @@ union ir_constant_data { bool b[16]; double d[16]; uint16_t f16[16]; - int16_t u16[16]; + uint16_t u16[16]; int16_t i16[16]; uint64_t u64[16]; int64_t i64[16]; -- 2.30.2