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

  /external/webkit/Source/WebCore/platform/graphics/gpu/
DrawingBuffer.cpp 151 float clearDepth = 0;
158 m_context->getFloatv(GraphicsContext3D::DEPTH_CLEAR_VALUE, &clearDepth);
159 m_context->clearDepth(1);
181 m_context->clearDepth(clearDepth);
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
ViewPort.java 76 protected boolean clearDepth = false, clearColor = false, clearStencil = false;
155 return clearDepth;
163 * @param clearDepth Enable/disable depth buffer clearing.
165 public void setClearDepth(boolean clearDepth) {
166 this.clearDepth = clearDepth;
226 this.clearDepth = depth;
  /external/webkit/Source/WebCore/platform/graphics/opengl/
GraphicsContext3DOpenGL.cpp 263 GLfloat clearColor[] = {0, 0, 0, 0}, clearDepth = 0;
275 ::glGetFloatv(GL_DEPTH_CLEAR_VALUE, &clearDepth);
298 ::glClearDepth(clearDepth);
471 void GraphicsContext3D::clearDepth(GC3Dclampf depth)
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
WebGLRenderingContext.cpp 524 m_context->clearDepth(1.0f);
541 m_context->clearDepth(m_clearDepth);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsContext3DQt.cpp 802 void GraphicsContext3D::clearDepth(GC3Dclampf depth)
    [all...]

Completed in 238 milliseconds