summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-09-25 18:40:16 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-09-26 07:31:42 -0600
commitb5e1a93036b22bd30738abccbb8a2645a515667f (patch)
tree672aa95b1893df2ff198bfe3321acdcb266c5d4d /src
parentd01269a57f4cfdb859352c933bc546296545dd80 (diff)
mesa: increase MAX_INSTRUCTIONS
Diffstat (limited to 'src')
-rw-r--r--src/mesa/main/texenvprogram.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c
index 4eb743736c..2bce93eef1 100644
--- a/src/mesa/main/texenvprogram.c
+++ b/src/mesa/main/texenvprogram.c
@@ -48,11 +48,9 @@ struct texenvprog_cache_item
/**
- * This MAX is probably a bit generous, but that's OK. There can be
- * up to four instructions per texture unit (TEX + 3 for combine),
- * then there's fog and specular add.
+ * Up to nine instructions per tex unit, plus fog, specular color.
*/
-#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 4) + 12)
+#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 9) + 12)
#define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)