From: Brian Paul Date: Fri, 26 Sep 2008 00:40:16 +0000 (-0600) Subject: mesa: increase MAX_INSTRUCTIONS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3f99f501db2582e241851e63e432c18e2de415be;p=mesa.git mesa: increase MAX_INSTRUCTIONS --- diff --git a/src/mesa/main/texenvprogram.c b/src/mesa/main/texenvprogram.c index c699c43429a..c64d88faf9c 100644 --- a/src/mesa/main/texenvprogram.c +++ b/src/mesa/main/texenvprogram.c @@ -37,11 +37,9 @@ #include "texenvprogram.h" /** - * 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)