Searched defs:depthMask (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/html/canvas/
H A DWebGLFramebuffer.cpp292 GC3Dboolean colorMask[] = {0, 0, 0, 0}, depthMask = 0; local
304 g3d->getBooleanv(GraphicsContext3D::DEPTH_WRITEMASK, &depthMask);
306 g3d->depthMask(true);
327 g3d->depthMask(depthMask);
H A DWebGLRenderingContext.cpp1289 void WebGLRenderingContext::depthMask(GC3Dboolean flag) function in class:WebCore::__anon11825::WebGLRenderingContext
1293 m_context->depthMask(flag);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DDrawingBuffer.cpp153 unsigned char depthMask = false; local
160 m_context->getBooleanv(GraphicsContext3D::DEPTH_WRITEMASK, &depthMask);
161 m_context->depthMask(true);
182 m_context->depthMask(depthMask);
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DContext.h204 bool depthMask; member in struct:gl::State
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp265 GLboolean colorMask[] = {GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE}, depthMask = GL_TRUE; local
277 ::glGetBooleanv(GL_DEPTH_WRITEMASK, &depthMask);
299 ::glDepthMask(depthMask);
581 void GraphicsContext3D::depthMask(GC3Dboolean flag) function in class:WebCore::GraphicsContext3D
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContext3DQt.cpp855 void GraphicsContext3D::depthMask(GC3Dboolean flag) function in class:WebCore::GraphicsContext3D

Completed in 33 milliseconds