glsl: fix the type of ir_constant_data::u16

Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5746>
This commit is contained in:
Marek Olšák 2020-07-04 14:01:12 -04:00
parent 3e47cb185e
commit 50c27a0a17
1 changed files with 1 additions and 1 deletions

View 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];