gallium: replace 128 with MAX_LABELS
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user