aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2019-09-27 16:43:31 -0400
committerMarek Olšák <[email protected]>2019-10-10 15:49:18 -0400
commit3340c066a17735c0214dfde3df396799bd4275ef (patch)
treeddc259c5e78f17799645be37f9b03bb7a75f2b68 /src/mesa
parentdd4cc56ebd05074848b1817493f5058e0c1cd9e9 (diff)
nir: move gl_nir_opt_access from glsl directory
Reviewed-by: Timothy Arceri <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/state_tracker/st_glsl_to_nir.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_glsl_to_nir.cpp b/src/mesa/state_tracker/st_glsl_to_nir.cpp
index d658a648b15..6472550e134 100644
--- a/src/mesa/state_tracker/st_glsl_to_nir.cpp
+++ b/src/mesa/state_tracker/st_glsl_to_nir.cpp
@@ -301,7 +301,7 @@ st_nir_opts(nir_shader *nir, bool scalar)
lower_flrp = 0;
}
- NIR_PASS(progress, nir, gl_nir_opt_access);
+ NIR_PASS(progress, nir, nir_opt_access);
NIR_PASS(progress, nir, nir_opt_undef);
NIR_PASS(progress, nir, nir_opt_conditional_discard);