summaryrefslogtreecommitdiffstats
path: root/src/mesa/program/sampler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/program/sampler.cpp')
-rw-r--r--src/mesa/program/sampler.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/mesa/program/sampler.cpp b/src/mesa/program/sampler.cpp
index f118552d64e..994495af2ae 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;
-}