Home | History | Annotate | Download | only in main

Lines Matching full:max_inst

308    GLint max_inst;  /** number of instructions allocated for program */
585 assert((GLint) p->program->Base.NumInstructions <= p->max_inst);
587 if (p->program->Base.NumInstructions == p->max_inst) {
592 p->max_inst *= 2;
594 newInst = _mesa_alloc_instructions(p->max_inst);
1643 p.max_inst = 32;
1644 p.program->Base.Instructions = _mesa_alloc_instructions(p.max_inst);