Module: Mesa Branch: staging/18.1 Commit: 1176f096f7c2daa04c50be77ee9a1acbf14ba027 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=1176f096f7c2daa04c50be77ee9a1acbf14ba027
Author: Karol Herbst <[email protected]> Date: Thu Jul 12 06:27:49 2018 +0200 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]> (cherry picked from commit 87c8af283672bfd42ce84b81e9609ab7d59ec36b) --- 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 21f1309765..452e8cde0b 100644 --- a/src/compiler/nir/nir_print.c +++ b/src/compiler/nir/nir_print.c @@ -87,6 +87,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 _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
