diff options
author | Marek Olšák <[email protected]> | 2020-07-04 14:01:12 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2020-07-07 22:02:06 -0400 |
commit | 50c27a0a1701005ab514d8c110241e01420b92a6 (patch) | |
tree | 4fb0e47be2051007d25ce72031bfbdba7ba98466 /src/compiler/glsl/ir.h | |
parent | 3e47cb185e364b40bd34cf53ac454908048c0b6d (diff) |
glsl: fix the type of ir_constant_data::u16
Reviewed-by: Alyssa Rosenzweig <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5746>
Diffstat (limited to 'src/compiler/glsl/ir.h')
-rw-r--r-- | src/compiler/glsl/ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |