Home
last modified time | relevance | path

Searched refs:stencil_temp (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_context.c806 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()
[all …]
Ds_stencil.c214 GLubyte *fail = swrast->stencil_temp.buf2; in do_stencil_test()
359 GLubyte *stencilTemp = swrast->stencil_temp.buf1; in _swrast_stencil_and_ztest_span()
408 GLubyte *passMask = swrast->stencil_temp.buf2; in _swrast_stencil_and_ztest_span()
409 GLubyte *failMask = swrast->stencil_temp.buf3; in _swrast_stencil_and_ztest_span()
410 GLubyte *origMask = swrast->stencil_temp.buf4; in _swrast_stencil_and_ztest_span()
526 GLubyte *destVals = swrast->stencil_temp.buf1; in _swrast_write_stencil_span()
527 GLubyte *newVals = swrast->stencil_temp.buf2; in _swrast_write_stencil_span()
Ds_context.h315 } stencil_temp; member