projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3e47cb1
)
glsl: fix the type of ir_constant_data::u16
author
Marek Olšák
<marek.olsak@amd.com>
Sat, 4 Jul 2020 18:01:12 +0000
(14:01 -0400)
committer
Marek 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
patch
|
blob
|
history
diff --git
a/src/compiler/glsl/ir.h
b/src/compiler/glsl/ir.h
index ca91150b5763fa15a4d2f00413756172d41fe351..e2e46adc8554866cb2d6b08d5e202f411c677eee 100644
(file)
--- 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];
+
u
int16_t u16[16];
int16_t i16[16];
uint64_t u64[16];
int64_t i64[16];