summaryrefslogtreecommitdiff
path: root/src/mesa/program
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2011-03-02 09:20:57 -0700
committerBrian Paul <brianp@vmware.com>2011-03-02 09:20:59 -0700
commit41208bf047888f5633befc5bcfac1c9132920492 (patch)
treef7caa2ff6d3398b33edade69c419f4ea8e22c4ec /src/mesa/program
parent5f4d0cc6bcfb34a68a72ebc4091f3ab0cf43f90c (diff)
mesa: increase INST_INDEX_BITS to 12
For more info see fd.o bug 29418.
Diffstat (limited to 'src/mesa/program')
-rw-r--r--src/mesa/program/prog_instruction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/program/prog_instruction.h b/src/mesa/program/prog_instruction.h
index a383828e34..669d710298 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 11
+#define INST_INDEX_BITS 12
/**