Lines Matching refs:stencil_temp
806 swrast->stencil_temp.buf1 = (GLubyte *) malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
807 swrast->stencil_temp.buf2 = (GLubyte *) malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
808 swrast->stencil_temp.buf3 = (GLubyte *) malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
809 swrast->stencil_temp.buf4 = (GLubyte *) malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte));
811 if (!swrast->stencil_temp.buf1 ||
812 !swrast->stencil_temp.buf2 ||
813 !swrast->stencil_temp.buf3 ||
814 !swrast->stencil_temp.buf4) {
836 free(swrast->stencil_temp.buf1);
837 free(swrast->stencil_temp.buf2);
838 free(swrast->stencil_temp.buf3);
839 free(swrast->stencil_temp.buf4);