Home
last modified time | relevance | path

Searched refs:stencilMax (Results 1 – 8 of 8) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_stencil.c500 const GLuint stencilMax = (1 << fb->Visual.stencilBits) - 1; in _swrast_write_stencil_span() local
525 if ((stencilMask & stencilMax) != stencilMax) { in _swrast_write_stencil_span()
556 const GLuint stencilMax = (1 << stencilBits) - 1; in _swrast_clear_stencil_buffer() local
572 if ((writeMask & stencilMax) != stencilMax) { in _swrast_clear_stencil_buffer()
Ds_depth.c669 const GLuint stencilMax = (1 << stencilBits) - 1; in _swrast_clear_depth_stencil_buffer() local
687 if ((writeMask & stencilMax) != stencilMax) { in _swrast_clear_depth_stencil_buffer()
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_clear.c402 const GLuint stencilMax = 0xff; in is_stencil_disabled() local
405 return (ctx->Stencil.WriteMask[0] & stencilMax) == 0; in is_stencil_disabled()
415 const GLuint stencilMax = 0xff; in is_stencil_masked() local
418 return (ctx->Stencil.WriteMask[0] & stencilMax) != stencilMax; in is_stencil_masked()
/external/mesa3d/src/mesa/main/
Dstencil.h101 GLint stencilMax = (1 << ctx->DrawBuffer->Visual.stencilBits) - 1; in _mesa_get_stencil_ref() local
103 return CLAMP(ref, 0, stencilMax); in _mesa_get_stencil_ref()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_bld_depth.c95 const unsigned stencilMax = 255; /* XXX fix */ in lp_build_stencil_test_single() local
112 if (stencil->valuemask != stencilMax) { in lp_build_stencil_test_single()
/external/mesa3d/docs/relnotes/
D7.9.1.rst162 - meta: Mask Stencil.Clear against stencilMax in \_mesa_meta_Clear
D7.10.rst2432 - meta: Mask Stencil.Clear against stencilMax in \_mesa_meta_Clear
/external/mesa3d/src/mesa/drivers/common/
Dmeta.c1680 const GLuint stencilMax = (1 << ctx->DrawBuffer->Visual.stencilBits) - 1; in meta_clear() local
1765 ctx->Stencil.Clear & stencilMax, in meta_clear()