summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2008-07-03 10:42:31 -0600
committerBrian Paul <brian.paul@tungstengraphics.com>2008-07-03 17:21:21 -0600
commit3c128748579c637ba7c777ba91ff4287a03190f6 (patch)
tree5f535cbff64316d31b2af49850e4a1c5ed31a20b
parent2212c214f1890091c102d4cb3c69ec2df2132322 (diff)
gallium: increase TGSI_EXEC_MAX_COND_NESTING, etc
-rw-r--r--src/gallium/auxiliary/tgsi/exec/tgsi_exec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h
index ea182bc4540..c89dfcb167b 100644
--- a/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h
+++ b/src/gallium/auxiliary/tgsi/exec/tgsi_exec.h
@@ -147,9 +147,9 @@ struct tgsi_exec_labels
#define TGSI_EXEC_NUM_ADDRS 1
#define TGSI_EXEC_NUM_IMMEDIATES 256
-#define TGSI_EXEC_MAX_COND_NESTING 10
-#define TGSI_EXEC_MAX_LOOP_NESTING 10
-#define TGSI_EXEC_MAX_CALL_NESTING 10
+#define TGSI_EXEC_MAX_COND_NESTING 20
+#define TGSI_EXEC_MAX_LOOP_NESTING 20
+#define TGSI_EXEC_MAX_CALL_NESTING 20
/**
* Run-time virtual machine state for executing TGSI shader.