diff options
author | Kristian H. Kristensen <[email protected]> | 2019-03-26 09:53:38 -0700 |
---|---|---|
committer | Kristian H. Kristensen <[email protected]> | 2019-03-27 13:26:02 -0700 |
commit | 56b4bc292f1994619d6a9779f15e6b2c5180b1de (patch) | |
tree | 823673cf096a51304d01279ddd10af855847bfe7 /src | |
parent | dce13e58b0641a429890abf1335a9aedd19b96ea (diff) |
st/glsl_to_nir: Calculate num_uniforms from NumParameterValues
We don't need to determine the number of uniform slots here, it's
already available as prog->Parameters->NumParameterValues. The way we
previously determined the number of slots was also broken for
PackedDriverUniformStorage, where we would add loc (in dwords) and
type_size() (in vec4s).
Signed-off-by: Kristian H. Kristensen <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Rob Clark <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_glsl_to_nir.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_nir.cpp b/src/mesa/state_tracker/st_glsl_to_nir.cpp index e5d5fe21e27..78ca83c76e7 100644 --- a/src/mesa/state_tracker/st_glsl_to_nir.cpp +++ b/src/mesa/state_tracker/st_glsl_to_nir.cpp @@ -240,9 +240,8 @@ st_nir_lookup_parameter_index(const struct gl_program_parameter_list *params, static void st_nir_assign_uniform_locations(struct gl_context *ctx, struct gl_program *prog, - struct exec_list *uniform_list, unsigned *size) + struct exec_list *uniform_list) { - int max = 0; int shaderidx = 0; int imageidx = 0; @@ -298,9 +297,7 @@ st_nir_assign_uniform_locations(struct gl_context *ctx, } uniform->data.driver_location = loc; - max = MAX2(max, loc + type_size(uniform->type)); } - *size = max; } void @@ -934,7 +931,10 @@ st_finalize_nir(struct st_context *st, struct gl_program *prog, st->ctx->Const.Program[nir->info.stage].MaxAtomicBuffers); st_nir_assign_uniform_locations(st->ctx, prog, - &nir->uniforms, &nir->num_uniforms); + &nir->uniforms); + + /* Set num_uniforms in number of attribute slots (vec4s) */ + nir->num_uniforms = DIV_ROUND_UP(prog->Parameters->NumParameterValues, 4); if (st->ctx->Const.PackedDriverUniformStorage) { NIR_PASS_V(nir, nir_lower_io, nir_var_uniform, st_glsl_type_dword_size, |