HomeSort by relevance Sort by last modified time
    Searched defs:clearMask (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/gpu/
DrawingBuffer.cpp 156 unsigned long clearMask = GraphicsContext3D::COLOR_BUFFER_BIT;
162 clearMask |= GraphicsContext3D::DEPTH_BUFFER_BIT;
169 clearMask |= GraphicsContext3D::STENCIL_BUFFER_BIT;
177 m_context->clear(clearMask);
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 269 GLbitfield clearMask = GL_COLOR_BUFFER_BIT;
279 clearMask |= GL_DEPTH_BUFFER_BIT;
286 clearMask |= GL_STENCIL_BUFFER_BIT;
293 ::glClear(clearMask);
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 527 GC3Dbitfield clearMask = GraphicsContext3D::COLOR_BUFFER_BIT;
529 clearMask |= GraphicsContext3D::DEPTH_BUFFER_BIT;
531 clearMask |= GraphicsContext3D::STENCIL_BUFFER_BIT;
532 m_context->clear(clearMask);
    [all...]

Completed in 175 milliseconds