From 52b10c7f20cf1613e47d5320339e61029549c420 Mon Sep 17 00:00:00 2001 From: Eduardo Lima Mitev Date: Thu, 17 Aug 2017 09:51:22 +0200 Subject: [PATCH] mesa/st: Handle 16-bit types at st_glsl_storage_type_size() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This is basically to avoid "not handle in switch" warnings. v2: Let the new types hit the assertion instead. (Marek Olšák and Jason Ekstrand) Reviewed-by: Marek Olšák Reviewed-by: Nicolai Hähnle Reviewed-by: Jason Ekstrand --- src/mesa/state_tracker/st_glsl_types.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mesa/state_tracker/st_glsl_types.cpp b/src/mesa/state_tracker/st_glsl_types.cpp index 5093602..e57fbc8 100644 --- a/src/mesa/state_tracker/st_glsl_types.cpp +++ b/src/mesa/state_tracker/st_glsl_types.cpp @@ -98,6 +98,9 @@ st_glsl_storage_type_size(const struct glsl_type *type, bool is_bindless) case GLSL_TYPE_VOID: case GLSL_TYPE_ERROR: case GLSL_TYPE_FUNCTION: + case GLSL_TYPE_FLOAT16: + case GLSL_TYPE_UINT16: + case GLSL_TYPE_INT16: assert(!"Invalid type in type_size"); break; } -- 2.7.4