Mesa (master): st/nir: Drop unused gl_program parameter in VS input handling helper.

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Dec 21 23:36:16 UTC 2018


Module: Mesa
Branch: master
Commit: 626f2477abd11730be7c249fa64e6ca4c53a1dc9
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=626f2477abd11730be7c249fa64e6ca4c53a1dc9

Author: Kenneth Graunke <kenneth at whitecape.org>
Date:   Mon Oct 29 22:38:57 2018 -0700

st/nir: Drop unused gl_program parameter in VS input handling helper.

Nobody uses this, so let's drop it.  This makes the helper callable
from places without a gl_program.

Reviewed-by: Marek Olšák <marek.olsak at amd.com>

---

 src/mesa/state_tracker/st_glsl_to_nir.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mesa/state_tracker/st_glsl_to_nir.cpp b/src/mesa/state_tracker/st_glsl_to_nir.cpp
index ed9f643e89..14927c8a4a 100644
--- a/src/mesa/state_tracker/st_glsl_to_nir.cpp
+++ b/src/mesa/state_tracker/st_glsl_to_nir.cpp
@@ -81,7 +81,7 @@ st_nir_fixup_varying_slots(struct st_context *st, struct exec_list *var_list)
  * on varying-slot w/ the VS outputs)
  */
 static void
-st_nir_assign_vs_in_locations(struct gl_program *prog, nir_shader *nir)
+st_nir_assign_vs_in_locations(nir_shader *nir)
 {
    nir->num_inputs = 0;
    nir_foreach_variable_safe(var, &nir->inputs) {
@@ -810,7 +810,7 @@ st_finalize_nir(struct st_context *st, struct gl_program *prog,
 
    if (nir->info.stage == MESA_SHADER_VERTEX) {
       /* Needs special handling so drvloc matches the vbo state: */
-      st_nir_assign_vs_in_locations(prog, nir);
+      st_nir_assign_vs_in_locations(nir);
       /* Re-lower global vars, to deal with any dead VS inputs. */
       NIR_PASS_V(nir, nir_lower_global_vars_to_local);
 




More information about the mesa-commit mailing list