Searched refs:stencil_temp (Results 1 – 3 of 3) sorted by relevance
804 swrast->stencil_temp.buf1 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte)); in _swrast_CreateContext()805 swrast->stencil_temp.buf2 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte)); in _swrast_CreateContext()806 swrast->stencil_temp.buf3 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte)); in _swrast_CreateContext()807 swrast->stencil_temp.buf4 = malloc(SWRAST_MAX_WIDTH * sizeof(GLubyte)); in _swrast_CreateContext()809 if (!swrast->stencil_temp.buf1 || in _swrast_CreateContext()810 !swrast->stencil_temp.buf2 || in _swrast_CreateContext()811 !swrast->stencil_temp.buf3 || in _swrast_CreateContext()812 !swrast->stencil_temp.buf4) { in _swrast_CreateContext()833 free(swrast->stencil_temp.buf1); in _swrast_DestroyContext()834 free(swrast->stencil_temp.buf2); in _swrast_DestroyContext()[all …]
216 GLubyte *fail = swrast->stencil_temp.buf2; in do_stencil_test()361 GLubyte *stencilTemp = swrast->stencil_temp.buf1; in _swrast_stencil_and_ztest_span()410 GLubyte *passMask = swrast->stencil_temp.buf2; in _swrast_stencil_and_ztest_span()411 GLubyte *failMask = swrast->stencil_temp.buf3; in _swrast_stencil_and_ztest_span()412 GLubyte *origMask = swrast->stencil_temp.buf4; in _swrast_stencil_and_ztest_span()528 GLubyte *destVals = swrast->stencil_temp.buf1; in _swrast_write_stencil_span()529 GLubyte *newVals = swrast->stencil_temp.buf2; in _swrast_write_stencil_span()
332 } stencil_temp; member