gallium: replace 128 with MAX_LABELS

This commit is contained in:
Brian Paul
2008-07-02 12:41:18 -06:00
parent 511733b862
commit 019ad5e284
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -214,7 +214,7 @@ tgsi_exec_machine_bind_shader(
break;
case TGSI_TOKEN_TYPE_INSTRUCTION:
assert( labels->count < 128 );
assert( labels->count < MAX_LABELS );
labels->labels[labels->count][0] = instno;
labels->labels[labels->count][1] = pointer;
+3 -1
View File
@@ -34,6 +34,8 @@
extern "C" {
#endif
#define MAX_LABELS 1024
#define NUM_CHANNELS 4 /* R,G,B,A */
#define QUAD_SIZE 4 /* 4 pixel/quad */
@@ -93,7 +95,7 @@ struct tgsi_sampler
*/
struct tgsi_exec_labels
{
unsigned labels[128][2];
unsigned labels[MAX_LABELS][2];
unsigned count;
};