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