Home | History | Annotate | Download | only in swrast_setup

Lines Matching full:swsetup

52    SScontext *swsetup = (SScontext *)CALLOC(sizeof(SScontext));
54 if (!swsetup)
57 ctx->swsetup_context = swsetup;
59 swsetup->NewState = ~0;
72 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
74 if (swsetup) {
75 FREE(swsetup);
114 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
120 if (intColors != swsetup->intColors ||
121 tnl->render_inputs_bitset != swsetup->last_index_bitset) {
126 swsetup->intColors = intColors;
131 if (swsetup->intColors)
173 swsetup->last_index_bitset = index_bitset;
185 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
189 if (swsetup->NewState & _SWSETUP_NEW_RENDERINDEX) {
193 if (swsetup->NewState & _NEW_PROGRAM) {
194 swsetup->last_index_bitset = 0;
197 swsetup->NewState = 0;
224 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
225 swsetup->NewState |= new_state;
234 SScontext *swsetup = SWSETUP_CONTEXT(ctx);
257 swsetup->verts = (SWvertex *)tnl->clipspace.vertex_buf;
258 swsetup->last_index_bitset = 0;