From: Marek Olšák Date: Sat, 4 Jul 2020 18:01:12 +0000 (-0400) Subject: glsl: fix the type of ir_constant_data::u16 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=50c27a0a1701005ab514d8c110241e01420b92a6;p=mesa.git glsl: fix the type of ir_constant_data::u16 Reviewed-by: Alyssa Rosenzweig Part-of: --- 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];