diff options
author | Brian Paul <brianp@vmware.com> | 2009-06-04 13:08:52 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-06-04 13:10:31 -0600 |
commit | 45e744dddc8a8f3b42610bfa512bc296bd5264bc (patch) | |
tree | 9e3145414a6f12755caf46c6fadb452b4fac796d /src/gallium | |
parent | fc7f92478286041a018ac4e72d2ccedeea7c0eca (diff) |
tgsi: increase MAX_LABELS to 4096
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.h b/src/gallium/auxiliary/tgsi/tgsi_exec.h index 0b4b2a6fb6..da22baad3e 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.h +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.h @@ -34,7 +34,7 @@ extern "C" { #endif -#define MAX_LABELS 1024 +#define MAX_LABELS (4 * 1024) /**< basically, max instructions */ #define NUM_CHANNELS 4 /* R,G,B,A */ #define QUAD_SIZE 4 /* 4 pixel/quad */ |