/external/webkit/Source/WebCore/platform/graphics/chromium/ |
D | Canvas2DLayerChromium.cpp | 59 layerRenderer()->removeChildContext(m_drawingBuffer->graphicsContext3D().get()); in ~Canvas2DLayerChromium() 110 layerRenderer()->removeChildContext(m_drawingBuffer->graphicsContext3D().get()); in setDrawingBuffer() 116 layerRenderer()->addChildContext(m_drawingBuffer->graphicsContext3D().get()); in setDrawingBuffer() 123 if (m_drawingBuffer->graphicsContext3D()) { in setLayerRenderer() 125 layerRenderer()->removeChildContext(m_drawingBuffer->graphicsContext3D().get()); in setLayerRenderer() 127 newLayerRenderer->addChildContext(m_drawingBuffer->graphicsContext3D().get()); in setLayerRenderer()
|
D | GLES2Canvas.cpp | 215 m_context->graphicsContext3D()->deleteBuffer(m_pathIndexBuffer); in ~GLES2Canvas() 217 m_context->graphicsContext3D()->deleteBuffer(m_pathVertexBuffer); in ~GLES2Canvas() 615 m_pathVertexBuffer = m_context->graphicsContext3D()->createBuffer(); in tesselateAndFillPath() 617 m_pathIndexBuffer = m_context->graphicsContext3D()->createBuffer(); in tesselateAndFillPath() 655 … m_context->graphicsContext3D()->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_pathVertexBuffer); in tesselateAndFillPath() 656 …m_context->graphicsContext3D()->bufferData(GraphicsContext3D::ARRAY_BUFFER, inVertices.size() * 2 … in tesselateAndFillPath() 658 … m_context->graphicsContext3D()->drawArrays(GraphicsContext3D::TRIANGLE_FAN, 0, inVertices.size()); in tesselateAndFillPath() 695 m_context->graphicsContext3D()->bindBuffer(GraphicsContext3D::ARRAY_BUFFER, m_pathVertexBuffer); in tesselateAndFillPath() 697 …m_context->graphicsContext3D()->bufferData(GraphicsContext3D::ARRAY_BUFFER, vertices.size() * 2 * … in tesselateAndFillPath() 700 …m_context->graphicsContext3D()->bindBuffer(GraphicsContext3D::ELEMENT_ARRAY_BUFFER, m_pathIndexBuf… in tesselateAndFillPath() [all …]
|
/external/webkit/Source/WebCore/html/canvas/ |
D | OESVertexArrayObject.cpp | 84 Extensions3D* extensions = m_context->graphicsContext3D()->getExtensions(); in isVertexArrayOES() 95 m_context->graphicsContext3D()->synthesizeGLError(GraphicsContext3D::INVALID_OPERATION); in bindVertexArrayOES() 99 Extensions3D* extensions = m_context->graphicsContext3D()->getExtensions(); in bindVertexArrayOES()
|
D | WebGLProgram.cpp | 46 setObject(context()->graphicsContext3D()->createProgram()); in WebGLProgram() 51 context()->graphicsContext3D()->deleteProgram(obj); in deleteObjectImpl() 67 GraphicsContext3D* context3d = context()->graphicsContext3D(); in cacheActiveAttribLocations()
|
D | WebGLRenderbuffer.cpp | 50 setObject(context()->graphicsContext3D()->createRenderbuffer()); in WebGLRenderbuffer() 55 context()->graphicsContext3D()->deleteRenderbuffer(object); in deleteObjectImpl()
|
D | WebGLShader.cpp | 46 setObject(context()->graphicsContext3D()->createShader(type)); in WebGLShader() 51 context()->graphicsContext3D()->deleteShader(object); in deleteObjectImpl()
|
D | WebGLVertexArrayObjectOES.cpp | 50 Extensions3D* extensions = context()->graphicsContext3D()->getExtensions(); in WebGLVertexArrayObjectOES() 62 Extensions3D* extensions = context()->graphicsContext3D()->getExtensions(); in deleteObjectImpl()
|
D | WebGLFramebuffer.cpp | 82 setObject(context()->graphicsContext3D()->createFramebuffer()); in WebGLFramebuffer() 252 context()->graphicsContext3D()->deleteFramebuffer(object); in deleteObjectImpl() 286 GraphicsContext3D* g3d = context()->graphicsContext3D(); in initializeRenderbuffers()
|
D | WebGLBuffer.cpp | 49 setObject(context()->graphicsContext3D()->createBuffer()); in WebGLBuffer() 55 context()->graphicsContext3D()->deleteBuffer(object); in deleteObjectImpl()
|
D | WebGLObject.cpp | 63 m_context->graphicsContext3D()->makeContextCurrent(); in deleteObject()
|
D | WebGLTexture.cpp | 53 setObject(context()->graphicsContext3D()->createTexture()); in WebGLTexture() 230 context()->graphicsContext3D()->deleteTexture(object); in deleteObjectImpl()
|
D | WebGLRenderingContext.h | 281 GraphicsContext3D* graphicsContext3D() const { return m_context.get(); } in graphicsContext3D() function
|
D | CanvasRenderingContext2D.cpp | 135 …m_drawingBuffer = m_context3D->graphicsContext3D()->createDrawingBuffer(IntSize(canvas->width(), c… in CanvasRenderingContext2D()
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
D | DrawingBuffer.h | 111 PassRefPtr<GraphicsContext3D> graphicsContext3D() const { return m_context; } in graphicsContext3D() function
|
D | SharedGraphicsContext3D.h | 134 GraphicsContext3D* graphicsContext3D() const { return m_context.get(); } in graphicsContext3D() function
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebView.h | 356 virtual WebGraphicsContext3D* graphicsContext3D() = 0;
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebViewImpl.h | 348 virtual WebGraphicsContext3D* graphicsContext3D();
|
D | GraphicsContext3DChromium.cpp | 242 …webGLContext->graphicsContext3D()->paintToCanvas(m_renderOutput, m_impl->width(), m_impl->height()… in paintRenderingResultsToCanvas()
|
D | WebViewImpl.cpp | 2474 WebGraphicsContext3D* WebViewImpl::graphicsContext3D() in graphicsContext3D() function in WebKit::WebViewImpl
|
/external/webkit/Source/WebKit/chromium/ |
D | ChangeLog-2011-02-16 | 4036 (WebKit::WebViewImpl::graphicsContext3D): 5811 (WebKit::WebViewImpl::graphicsContext3D): 8481 …m] Check if the acceleratedCompositingEnabled setting is active in WebViewImpl::graphicsContext3D() 8494 (WebKit::WebViewImpl::graphicsContext3D): 8718 (WebKit::WebViewImpl::graphicsContext3D): 8962 (WebKit::WebViewImpl::graphicsContext3D):
|
D | ChangeLog | 1724 (WebKit::WebViewImpl::graphicsContext3D): create a temporary context if
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 34666 (WebCore::DrawingBuffer::graphicsContext3D): 34671 (WebCore::SharedGraphicsContext3D::graphicsContext3D): 62442 (WebCore::WebGLRenderingContext::graphicsContext3D): 84205 (WebCore::CanvasRenderingContext2D::graphicsContext3D): 86178 (WebCore::WebGLRenderingContext::graphicsContext3D): 87514 (WebCore::CanvasRenderingContext::graphicsContext3D): 87555 (WebCore::WebGLRenderingContext::graphicsContext3D):
|
D | ChangeLog-2010-01-29 | 40506 (WebCore::CanvasRenderingContext3D::graphicsContext3D): 65106 (WebCore::CanvasRenderingContext3D::graphicsContext3D):
|