Brian's fix for bug9829
authorXiang, Haihao <haihao.xiang@intel.com>
Fri, 17 Aug 2007 17:36:13 +0000 (13:36 -0400)
committerXiang, Haihao <haihao.xiang@intel.com>
Fri, 17 Aug 2007 17:36:13 +0000 (13:36 -0400)
src/mesa/main/texenvprogram.c

index 72b54b27d9a6a61d2c42adc1b74a1ce3031717a4..9c84da985e006f9082d764aef09e60cc52663214 100644 (file)
@@ -38,7 +38,7 @@
  * According to Glean's texCombine test, no more than 21 instructions
  * are needed.  Allow a few extra just in case.
  */
-#define MAX_INSTRUCTIONS 24
+#define MAX_INSTRUCTIONS ((MAX_TEXTURE_UNITS * 6) + 10) /* see bug 9829 */
 
 #define DISASSEM (MESA_VERBOSE & VERBOSE_DISASSEM)