diff options
author | Timothy Arceri <[email protected]> | 2019-12-05 15:01:14 +1100 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-12-10 09:08:29 -0800 |
commit | 0a70ed2aa3a52fc2eb9c2fd89f81078b76b2b53e (patch) | |
tree | fcb1fe051add9987e057577d552826882291bcf4 /src | |
parent | 3742910ba23e809d7307542f6dd197d38debd299 (diff) |
glsl/nir: iterate the system values list when adding varyings
Iterate the system values list when adding varyings to the program
resource list in the NIR linker. This is needed to avoid CTS
regressions when using the NIR to build the GLSL resource list in
an upcoming series. Presumably it also fixes a bug with the current
ARB_gl_spirv support.
Fixes: ffdb44d3a0a2 ("nir/linker: Add inputs/outputs to the program resource list")
Reviewed-by: Alejandro PiƱeiro <[email protected]>
(cherry picked from commit 1abca2b3c84a42ab64c466bc209db42c41bba5e3)
Diffstat (limited to 'src')
-rw-r--r-- | src/compiler/glsl/gl_nir_linker.c | 61 |
1 files changed, 36 insertions, 25 deletions
diff --git a/src/compiler/glsl/gl_nir_linker.c b/src/compiler/glsl/gl_nir_linker.c index 4503231c6c2..1b041d3845d 100644 --- a/src/compiler/glsl/gl_nir_linker.c +++ b/src/compiler/glsl/gl_nir_linker.c @@ -34,32 +34,11 @@ */ static bool -add_interface_variables(const struct gl_context *cts, - struct gl_shader_program *prog, - struct set *resource_set, - unsigned stage, GLenum programInterface) +add_vars_from_list(const struct gl_context *ctx, + struct gl_shader_program *prog, struct set *resource_set, + const struct exec_list *var_list, unsigned stage, + GLenum programInterface) { - const struct exec_list *var_list = NULL; - - struct gl_linked_shader *sh = prog->_LinkedShaders[stage]; - if (!sh) - return true; - - nir_shader *nir = sh->Program->nir; - assert(nir); - - switch (programInterface) { - case GL_PROGRAM_INPUT: - var_list = &nir->inputs; - break; - case GL_PROGRAM_OUTPUT: - var_list = &nir->outputs; - break; - default: - assert("!Should not get here"); - break; - } - nir_foreach_variable(var, var_list) { if (var->data.how_declared == nir_var_hidden) continue; @@ -108,6 +87,38 @@ add_interface_variables(const struct gl_context *cts, return true; } +static bool +add_interface_variables(const struct gl_context *ctx, + struct gl_shader_program *prog, + struct set *resource_set, + unsigned stage, GLenum programInterface) +{ + struct gl_linked_shader *sh = prog->_LinkedShaders[stage]; + if (!sh) + return true; + + nir_shader *nir = sh->Program->nir; + assert(nir); + + switch (programInterface) { + case GL_PROGRAM_INPUT: { + bool result = add_vars_from_list(ctx, prog, resource_set, + &nir->inputs, stage, programInterface); + result &= add_vars_from_list(ctx, prog, resource_set, &nir->system_values, + stage, programInterface); + return result; + } + case GL_PROGRAM_OUTPUT: + return add_vars_from_list(ctx, prog, resource_set, &nir->outputs, stage, + programInterface); + default: + assert("!Should not get here"); + break; + } + + return false; +} + /* TODO: as we keep adding features, this method is becoming more and more * similar to its GLSL counterpart at linker.cpp. Eventually it would be good * to check if they could be refactored, and reduce code duplication somehow |