HomeSort by relevance Sort by last modified time
    Searched refs:webContext (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
Extensions3D.cpp 64 return static_cast<int>(m_context->webContext()->getGraphicsResetStatusARB());
69 m_context->webContext()->blitFramebufferCHROMIUM(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter);
74 m_context->webContext()->renderbufferStorageMultisampleCHROMIUM(target, samples, internalformat, width, height);
79 return m_context->webContext()->mapBufferSubDataCHROMIUM(target, offset, size, access);
84 m_context->webContext()->unmapBufferSubDataCHROMIUM(data);
89 return m_context->webContext()->mapTexSubImage2DCHROMIUM(target, level, xoffset, yoffset, width, height, format, type, access);
94 m_context->webContext()->unmapTexSubImage2DCHROMIUM(data);
99 return m_context->webContext()->createVertexArrayOES();
104 m_context->webContext()->deleteVertexArrayOES(array);
109 return m_context->webContext()->isVertexArrayOES(array)
    [all...]
GraphicsContext3D.cpp 84 GraphicsContext3D::GraphicsContext3D(PassOwnPtr<WebKit::WebGraphicsContext3D> webContext, bool preserveDrawingBuffer)
85 : m_impl(webContext.get())
86 , m_ownedWebContext(webContext)
289 OwnPtr<WebKit::WebGraphicsContext3D> webContext = adoptPtr(WebKit::Platform::current()->createOffscreenGraphicsContext3D(webAttributes));
290 if (!webContext)
293 return GraphicsContext3D::createGraphicsContextFromWebContext(webContext.release(), attrs.preserveDrawingBuffer);
302 PassRefPtr<GraphicsContext3D> GraphicsContext3D::createGraphicsContextFromWebContext(PassOwnPtr<WebKit::WebGraphicsContext3D> webContext, bool preserveDrawingBuffer)
304 RefPtr<GraphicsContext3D> context = adoptRef(new GraphicsContext3D(webContext, preserveDrawingBuffer));
    [all...]
GraphicsContext3D.h 444 WebKit::WebGraphicsContext3D* webContext() const { return m_impl; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/gpu/
SharedGraphicsContext3D.cpp 50 WebKit::WebGraphicsContext3D* webContext = 0;
54 webContext = provider->context3d();
58 if (webContext && grContext) {
59 WebKit::WebGraphicsContext3D* oldWebContext = m_context ? m_context->webContext() : 0;
61 if (webContext != oldWebContext || grContext != oldGrContext)
DrawingBuffer.cpp 144 return m_context->webContext();
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
Canvas2DLayerBridgeTest.cpp 78 MockCanvasContext& mainMock = *static_cast<MockCanvasContext*>(mainContext->webContext());
Canvas2DLayerBridge.cpp 49 ASSERT(!context3D->webContext()->isContextLost());
193 return m_context->webContext();
199 if (m_context->webContext()->isContextLost() || !m_surfaceIsValid) {
204 if (!sharedContext || sharedContext->webContext()->isContextLost()) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 524 WebGraphicsContext3D* webGraphicsContext3D = context->webContext();
651 WebGraphicsContext3D* webGraphicsContext3D = context3D->webContext();

Completed in 294 milliseconds