glsl: fix the type of ir_constant_data::u16
authorMarek Olšák <marek.olsak@amd.com>
Sat, 4 Jul 2020 18:01:12 +0000 (14:01 -0400)
committerMarek Olšák <marek.olsak@amd.com>
Wed, 8 Jul 2020 02:02:06 +0000 (22:02 -0400)
Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5746>

src/compiler/glsl/ir.h

index ca91150b5763fa15a4d2f00413756172d41fe351..e2e46adc8554866cb2d6b08d5e202f411c677eee 100644 (file)
@@ -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];