Searched defs:clearDepth (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DDrawingBuffer.cpp151 float clearDepth = 0; local
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/
H A DViewPort.java76 protected boolean clearDepth = false, clearColor = false, clearStencil = false; field in class:ViewPort
155 return clearDepth;
163 * @param clearDepth Enable/disable depth buffer clearing.
165 public void setClearDepth(boolean clearDepth) { argument
166 this.clearDepth = clearDepth;
226 this.clearDepth = depth;
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp263 GLfloat clearColor[] = {0, 0, 0, 0}, clearDepth = 0; local
275 ::glGetFloatv(GL_DEPTH_CLEAR_VALUE, &clearDepth);
298 ::glClearDepth(clearDepth);
471 void GraphicsContext3D::clearDepth(GC3Dclampf depth) function in class:WebCore::GraphicsContext3D
/external/webkit/Source/WebCore/html/canvas/
H A DWebGLRenderingContext.cpp524 m_context->clearDepth(1.0f);
541 m_context->clearDepth(m_clearDepth);
990 void WebGLRenderingContext::clearDepth(GC3Dfloat depth) function in class:WebCore::__anon14578::WebGLRenderingContext
995 m_context->clearDepth(depth);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsContext3DQt.cpp802 void GraphicsContext3D::clearDepth(GC3Dclampf depth) function in class:WebCore::GraphicsContext3D

Completed in 4563 milliseconds