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

  /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)
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
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...]

Completed in 312 milliseconds