Home | History | Annotate | Download | only in swrast

Lines Matching refs:SpanArrays

774    /* SpanArrays is global and shared by all SWspan instances. However, when
775 * using multiple threads, it is necessary to have one SpanArrays instance
778 swrast->SpanArrays = (SWspanarrays *) MALLOC(maxThreads * sizeof(SWspanarrays));
779 if (!swrast->SpanArrays) {
784 swrast->SpanArrays[i].ChanType = CHAN_TYPE;
786 swrast->SpanArrays[i].rgba = swrast->SpanArrays[i].rgba8;
788 swrast->SpanArrays[i].rgba = swrast->SpanArrays[i].rgba16;
790 swrast->SpanArrays[i].rgba = swrast->SpanArrays[i].attribs[FRAG_ATTRIB_COL0];
798 swrast->PointSpan.array = swrast->SpanArrays;
831 FREE( swrast->SpanArrays );