projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cba90c1
)
disable yesterday's _mesa_add_named_constant() change for now
author
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 16 Nov 2006 20:59:11 +0000
(20:59 +0000)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Thu, 16 Nov 2006 20:59:11 +0000
(20:59 +0000)
src/mesa/shader/program.c
patch
|
blob
|
history
diff --git
a/src/mesa/shader/program.c
b/src/mesa/shader/program.c
index e903fd030516920d0e6a4e4f64d10b354e19dd73..e8824426d4ff0f84ea29487f45baa0936abe434a 100644
(file)
--- a/
src/mesa/shader/program.c
+++ b/
src/mesa/shader/program.c
@@
-440,12
+440,14
@@
_mesa_add_named_constant(struct gl_program_parameter_list *paramList,
const char *name, const GLfloat values[4],
GLuint size)
{
+#if 0 /* disable this for now -- we need to save the name! */
GLuint pos, swizzle;
ASSERT(size == 4); /* XXX future feature */
/* check if we already have this constant */
if (_mesa_lookup_parameter_constant(paramList, values, 4, &pos, &swizzle)) {
return pos;
}
+#endif
return add_parameter(paramList, name, values, PROGRAM_CONSTANT);
}