Home
last modified time | relevance | path

Searched refs:stencilMask (Results 1 – 22 of 22) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_stencil.c500 const GLuint stencilMask = ctx->Stencil.WriteMask[0]; in _swrast_write_stencil_span() local
524 if ((stencilMask & stencilMax) != stencilMax) { in _swrast_write_stencil_span()
533 = (stencil[i] & stencilMask) | (destVals[i] & ~stencilMask); in _swrast_write_stencil_span()
Ds_drawpix.c557 const GLuint stencilMask = ctx->Stencil.WriteMask[0]; in draw_depth_stencil_pixels() local
583 (stencilMask & 0xff) == 0xff) { in draw_depth_stencil_pixels()
624 if (stencilMask != 0x0) { in draw_depth_stencil_pixels()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_stencil.c500 const GLuint stencilMask = ctx->Stencil.WriteMask[0]; in _swrast_write_stencil_span() local
524 if ((stencilMask & stencilMax) != stencilMax) { in _swrast_write_stencil_span()
533 = (stencil[i] & stencilMask) | (destVals[i] & ~stencilMask); in _swrast_write_stencil_span()
Ds_drawpix.c557 const GLuint stencilMask = ctx->Stencil.WriteMask[0]; in draw_depth_stencil_pixels() local
583 (stencilMask & 0xff) == 0xff) { in draw_depth_stencil_pixels()
624 if (stencilMask != 0x0) { in draw_depth_stencil_pixels()
/external/chromium_org/third_party/angle/src/libGLESv2/
Dangletypes.h88 GLuint stencilMask; member
DContext.cpp90 mState.depthStencil.stencilMask = -1; in Context()
433 void Context::setStencilParams(GLenum stencilFunc, GLint stencilRef, GLuint stencilMask) in setStencilParams() argument
437 mState.depthStencil.stencilMask = stencilMask; in setStencilParams()
1317 …case GL_STENCIL_VALUE_MASK: *params = mState.depthStencil.stencilMask; b… in getIntegerv()
DContext.h212 void setStencilParams(GLenum stencilFunc, GLint stencilRef, GLuint stencilMask);
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DRenderStateCache.cpp304 dsDesc.StencilReadMask = gl_d3d11::ConvertStencilMask(dsState.stencilMask); in getDepthStencilState()
DRenderer9.cpp989 depthStencilState.stencilMask != depthStencilState.stencilBackMask) in setDepthStencilState()
1006 depthStencilState.stencilMask); in setDepthStencilState()
DRenderer11.cpp712 depthStencilState.stencilMask != depthStencilState.stencilBackMask) in setDepthStencilState()
1717 glDSState.stencilMask = 0; in maskedClear()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsContext3D.h310 void stencilMask(GC3Duint mask);
DGraphicsContext3D.cpp453 DELEGATE_TO_WEBCONTEXT_1(stencilMask, GC3Duint) in DELEGATE_TO_WEBCONTEXT_3()
/external/chromium_org/third_party/WebKit/Source/web/tests/
DMockWebGraphicsContext3D.h189 virtual void stencilMask(WGC3Duint mask) { } in stencilMask() function
/external/chromium_org/third_party/WebKit/public/platform/
DWebGraphicsContext3D.h316 virtual void stencilMask(WGC3Duint mask) = 0;
/external/chromium_org/webkit/common/gpu/
Dwebgraphicscontext3d_in_process_command_buffer_impl.h294 virtual void stencilMask(WGC3Duint mask); in NON_EXPORTED_BASE()
Dwebgraphicscontext3d_in_process_command_buffer_impl.cc848 DELEGATE_TO_GL_1(stencilMask, StencilMask, WGC3Duint)
/external/chromium_org/content/common/gpu/client/
Dwebgraphicscontext3d_command_buffer_impl.h353 virtual void stencilMask(WGC3Duint mask);
Dwebgraphicscontext3d_command_buffer_impl.cc966 DELEGATE_TO_GL_1(stencilMask, StencilMask, WGC3Duint)
/external/chromium_org/cc/test/
Dfake_web_graphics_context_3d.h359 virtual void stencilMask(blink::WGC3Duint mask) {} in stencilMask() function
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
DWebGLRenderingContext.h216 void stencilMask(GC3Duint);
DWebGLRenderingContext.idl594 [StrictTypeChecking] void stencilMask(GLuint mask);
DWebGLRenderingContext.cpp3240 void WebGLRenderingContext::stencilMask(GC3Duint mask) in stencilMask() function in WebCore::WebGLRenderingContext
3246 m_context->stencilMask(mask); in stencilMask()