From: Ian Romanick Date: Wed, 29 Jun 2016 22:17:16 +0000 (-0700) Subject: glsl: Document and enforce restriction on type values X-Git-Tag: upstream/17.1.0~8277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=795d8dff89c7e6841f61e3b9851de95765f4d001;p=platform%2Fupstream%2Fmesa.git glsl: Document and enforce restriction on type values Signed-off-by: Ian Romanick Reviewed-by: Dave Airlie --- diff --git a/src/compiler/glsl_types.cpp b/src/compiler/glsl_types.cpp index 884f311..066a74e 100644 --- a/src/compiler/glsl_types.cpp +++ b/src/compiler/glsl_types.cpp @@ -55,6 +55,13 @@ glsl_type::glsl_type(GLenum gl_type, vector_elements(vector_elements), matrix_columns(matrix_columns), length(0) { + /* Values of these types must fit in the two bits of + * glsl_type::sampled_type. + */ + STATIC_ASSERT((unsigned(GLSL_TYPE_UINT) & 3) == unsigned(GLSL_TYPE_UINT)); + STATIC_ASSERT((unsigned(GLSL_TYPE_INT) & 3) == unsigned(GLSL_TYPE_INT)); + STATIC_ASSERT((unsigned(GLSL_TYPE_FLOAT) & 3) == unsigned(GLSL_TYPE_FLOAT)); + mtx_lock(&glsl_type::mutex); init_ralloc_type_ctx(); diff --git a/src/compiler/glsl_types.h b/src/compiler/glsl_types.h index c3a0185..7c4827d 100644 --- a/src/compiler/glsl_types.h +++ b/src/compiler/glsl_types.h @@ -47,6 +47,9 @@ _mesa_glsl_release_types(void); #endif enum glsl_base_type { + /* Note: GLSL_TYPE_UINT, GLSL_TYPE_INT, and GLSL_TYPE_FLOAT must be 0, 1, + * and 2 so that they will fit in the 2 bits of glsl_type::sampled_type. + */ GLSL_TYPE_UINT = 0, GLSL_TYPE_INT, GLSL_TYPE_FLOAT,