summaryrefslogtreecommitdiff
path: root/src/mesa/program/prog_parameter.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-08-24 21:45:40 -0700
committerEric Anholt <eric@anholt.net>2010-08-25 12:38:32 -0700
commitb5c07b9226d8e7de78f6367b5799b39caf820ef3 (patch)
treeae40b7c697ffde9fa8ebcac7ca8e9ca54d80305f /src/mesa/program/prog_parameter.c
parentaa452e20bff9aea2ecb994c9f7b413b0726a04f3 (diff)
mesa: Remove now-unused _mesa_add_sampler().
We do the generation of "what sampler number within Parameters are we" right in ir_to_mesa.cpp, instead of repeatedly walking the existing list to find out.
Diffstat (limited to 'src/mesa/program/prog_parameter.c')
-rw-r--r--src/mesa/program/prog_parameter.c37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/mesa/program/prog_parameter.c b/src/mesa/program/prog_parameter.c
index b3770f83b5..40dc92cb20 100644
--- a/src/mesa/program/prog_parameter.c
+++ b/src/mesa/program/prog_parameter.c
@@ -285,43 +285,6 @@ _mesa_add_unnamed_constant(struct gl_program_parameter_list *paramList,
}
/**
- * Add a sampler to the parameter list.
- * \param name uniform's name
- * \param datatype GL_SAMPLER_2D, GL_SAMPLER_2D_RECT_ARB, etc.
- * \param index the sampler number (as seen in TEX instructions)
- * \return sampler index (starting at zero) or -1 if error
- */
-GLint
-_mesa_add_sampler(struct gl_program_parameter_list *paramList,
- const char *name, GLenum datatype, int array_length)
-{
- GLint i = _mesa_lookup_parameter_index(paramList, -1, name);
- if (i >= 0 && paramList->Parameters[i].Type == PROGRAM_SAMPLER) {
- ASSERT(paramList->Parameters[i].Size == 4 * array_length);
- ASSERT(paramList->Parameters[i].DataType == datatype);
- /* already in list */
- return (GLint) paramList->ParameterValues[i][0];
- }
- else {
- GLuint i;
- /* One integer texture unit number goes in each parameter location. */
- const GLint size = 4 * array_length;
- GLfloat value[4];
- GLint numSamplers = 0;
- for (i = 0; i < paramList->NumParameters; i++) {
- if (paramList->Parameters[i].Type == PROGRAM_SAMPLER)
- numSamplers++;
- }
- value[0] = (GLfloat) numSamplers;
- value[1] = value[2] = value[3] = 0.0F;
- (void) _mesa_add_parameter(paramList, PROGRAM_SAMPLER, name,
- size, datatype, value, NULL, 0x0);
- return numSamplers;
- }
-}
-
-
-/**
* Add parameter representing a varying variable.
*/
GLint