diff options
author | Karol Herbst <[email protected]> | 2018-07-12 06:27:49 +0200 |
---|---|---|
committer | Karol Herbst <[email protected]> | 2018-07-15 19:28:37 +0200 |
commit | 87c8af283672bfd42ce84b81e9609ab7d59ec36b (patch) | |
tree | 4b7c436cff69a726649b36b1f4a75ee6349ef8e6 /src/compiler | |
parent | 427a3dbdb14ae424158454985860e03d57d84c27 (diff) |
nir: fix printing of vec16 type
Fixes: 2f181c8c183cc8b4d0450789bb20c2be48d32db3
"glsl_types: vec8/vec16 support"
Reviewed-by: Jason Ekstrand <[email protected]>
Signed-off-by: Karol Herbst <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/nir/nir_print.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 18860db0058..4fa12d2d207 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -88,6 +88,7 @@ print_register(nir_register *reg, print_state *state) static const char *sizes[] = { "error", "vec1", "vec2", "vec3", "vec4", "error", "error", "error", "vec8", + "error", "error", "error", "error", "error", "error", "error", "vec16"}; static void |