diff options
author | Alejandro Piñeiro <[email protected]> | 2017-11-18 10:04:42 +0100 |
---|---|---|
committer | Alejandro Piñeiro <[email protected]> | 2019-07-12 23:42:41 +0200 |
commit | 3ebd60b4917bb45d5b5339a10ba3aa4561925c66 (patch) | |
tree | 3c7be8bbe7238210e706edbb29c45d0290f0c358 /src/mesa/main/shaderapi.c | |
parent | cafc1a40d465a42805bb2ae45b18997e87bbac75 (diff) |
mesa: Fix ACTIVE_*_MAX_LENGTH program queries (ARB_gl_spirv)
Since ARB_gl_spirv it is possible to miss a lot of name reflection
information, so it is needed to add NULL name checks for several
queries, and return a specific value on those cases. This commit add
them for ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH,
ACTIVE_ATTRIBUTE_MAX_LENGTH and ACTIVE_UNIFORM_MAX_LENGTH.
From ARB_gl_spirv spec:
"If pname is ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH, the length of
the longest active uniform block name, including the null
terminator, is returned. If no active uniform blocks exist, zero
is returned. If no name reflection information is available, one
is returned.
If pname is ACTIVE_ATTRIBUTE_MAX_LENGTH, the length of the longest
active attribute name, including a null terminator, is returned.
If no active attributes exist, zero is returned. If no name
reflection information is available, one is returned.
If pname is ACTIVE_UNIFORM_MAX_LENGTH, the length of the longest
active uniform name, including a null terminator, is returned. If
no active uniforms exist, zero is returned. If no name reflection
information is available, one is returned."
Reviewed-by: Caio Marcelo de Oliveira Filho <[email protected]>
Diffstat (limited to 'src/mesa/main/shaderapi.c')
-rw-r--r-- | src/mesa/main/shaderapi.c | 34 |
1 files changed, 30 insertions, 4 deletions
diff --git a/src/mesa/main/shaderapi.c b/src/mesa/main/shaderapi.c index e06ab00bb0b..e84f5bdf8b7 100644 --- a/src/mesa/main/shaderapi.c +++ b/src/mesa/main/shaderapi.c @@ -649,6 +649,13 @@ check_tes_query(struct gl_context *ctx, const struct gl_shader_program *shProg) return false; } +/** + * Return the length of a string, or 0 if the pointer passed in is NULL + */ +static size_t strlen_or_zero(const char *s) +{ + return s ? strlen(s) : 0; +} /** * glGetProgramiv() - get shader program state. @@ -736,11 +743,23 @@ get_programiv(struct gl_context *ctx, GLuint program, GLenum pname, if (shProg->data->UniformStorage[i].is_shader_storage) continue; + /* From ARB_gl_spirv spec: + * + * "If pname is ACTIVE_UNIFORM_MAX_LENGTH, the length of the + * longest active uniform name, including a null terminator, is + * returned. If no active uniforms exist, zero is returned. If no + * name reflection information is available, one is returned." + * + * We are setting 0 here, as below it will add 1 for the NUL character. + */ + const GLint base_len = + strlen_or_zero(shProg->data->UniformStorage[i].name); + /* Add one for the terminating NUL character for a non-array, and * 4 for the "[0]" and the NUL for an array. */ - const GLint len = strlen(shProg->data->UniformStorage[i].name) + 1 + - ((shProg->data->UniformStorage[i].array_elements != 0) ? 3 : 0); + const GLint len = base_len + 1 + + ((shProg->data->UniformStorage[i].array_elements != 0) ? 3 : 0); if (len > max_len) max_len = len; @@ -818,9 +837,16 @@ get_programiv(struct gl_context *ctx, GLuint program, GLenum pname, break; for (i = 0; i < shProg->data->NumUniformBlocks; i++) { - /* Add one for the terminating NUL character. + /* Add one for the terminating NUL character. Name can be NULL, in + * that case, from ARB_gl_spirv: + * "If pname is ACTIVE_UNIFORM_BLOCK_MAX_NAME_LENGTH, the length of + * the longest active uniform block name, including the null + * terminator, is returned. If no active uniform blocks exist, + * zero is returned. If no name reflection information is + * available, one is returned." */ - const GLint len = strlen(shProg->data->UniformBlocks[i].Name) + 1; + const GLint len = + strlen_or_zero(shProg->data->UniformBlocks[i].Name) + 1; if (len > max_len) max_len = len; |