From f376e254520db2b9953cc695ca606ab6b4460758 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Tue, 10 Aug 2010 09:24:32 -0600 Subject: [PATCH 1/2] mesa: increase INST_INDEX_BITS to 12 For more info see fd.o bug 29418. --- src/mesa/program/prog_instruction.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/program/prog_instruction.h b/src/mesa/program/prog_instruction.h index 21ec813..d1ebf12 100644 --- a/src/mesa/program/prog_instruction.h +++ b/src/mesa/program/prog_instruction.h @@ -247,7 +247,7 @@ typedef enum prog_opcode { * Number of bits for the src/dst register Index field. * This limits the size of temp/uniform register files. */ -#define INST_INDEX_BITS 10 +#define INST_INDEX_BITS 12 /** -- 1.7.1.1