[Mesa-dev] [PATCH 2/4] mesa: drop unused nonconst sampler functions.

Dave Airlie airlied at gmail.com
Fri Feb 5 03:40:28 UTC 2016


Since we fixed the glsl->tgsi conversion we no longer need
this function.

Signed-off-by: Dave Airlie <airlied at redhat.com>
---
 src/mesa/program/sampler.cpp | 10 ----------
 src/mesa/program/sampler.h   |  4 ----
 2 files changed, 14 deletions(-)

diff --git a/src/mesa/program/sampler.cpp b/src/mesa/program/sampler.cpp
index f118552..994495a 100644
--- a/src/mesa/program/sampler.cpp
+++ b/src/mesa/program/sampler.cpp
@@ -132,13 +132,3 @@ _mesa_get_sampler_uniform_value(class ir_dereference *sampler,
           getname.offset;
 }
 
-
-class ir_rvalue *
-_mesa_get_sampler_array_nonconst_index(class ir_dereference *sampler)
-{
-   ir_dereference_array *deref_arr = sampler->as_dereference_array();
-   if (!deref_arr || deref_arr->array_index->as_constant())
-      return NULL;
-
-   return deref_arr->array_index;
-}
diff --git a/src/mesa/program/sampler.h b/src/mesa/program/sampler.h
index 61c7f58..397805a 100644
--- a/src/mesa/program/sampler.h
+++ b/src/mesa/program/sampler.h
@@ -32,8 +32,4 @@ _mesa_get_sampler_uniform_value(class ir_dereference *sampler,
 				struct gl_shader_program *shader_program,
 				const struct gl_program *prog);
 
-class ir_rvalue *
-_mesa_get_sampler_array_nonconst_index(class ir_dereference *sampler);
-
-
 #endif /* SAMPLER_H */
-- 
2.5.0



More information about the mesa-dev mailing list