From 87c8af283672bfd42ce84b81e9609ab7d59ec36b Mon Sep 17 00:00:00 2001 From: Karol Herbst Date: Thu, 12 Jul 2018 06:27:49 +0200 Subject: [PATCH] nir: fix printing of vec16 type Fixes: 2f181c8c183cc8b4d0450789bb20c2be48d32db3 "glsl_types: vec8/vec16 support" Reviewed-by: Jason Ekstrand Signed-off-by: Karol Herbst --- src/compiler/nir/nir_print.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/nir/nir_print.c b/src/compiler/nir/nir_print.c index 18860db..4fa12d2 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 -- 2.7.4