Searched refs:context3d (Results 1 - 25 of 35) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLObject.cpp52 void WebGLObject::deleteObject(blink::WebGraphicsContext3D* context3d) argument
62 if (!context3d)
63 context3d = getAWebGraphicsContext3D();
65 if (context3d)
66 deleteObjectImpl(context3d, m_object);
95 void WebGLObject::onDetached(blink::WebGraphicsContext3D* context3d) argument
100 deleteObject(context3d);
H A DWebGLRenderbuffer.cpp65 void WebGLRenderbuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
67 context3d->deleteRenderbuffer(object);
68 deleteEmulatedStencilBuffer(context3d);
71 void WebGLRenderbuffer::deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d) argument
75 m_emulatedStencilBuffer->deleteObject(context3d);
H A DWebGLBuffer.cpp60 void WebGLBuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
62 context3d->deleteBuffer(object);
H A DWebGLProgram.cpp69 void WebGLProgram::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject obj) argument
71 context3d->deleteProgram(obj);
73 m_vertexShader->onDetached(context3d);
77 m_fragmentShader->onDetached(context3d);
170 void WebGLProgram::cacheActiveAttribLocations(blink::WebGraphicsContext3D* context3d) argument
175 context3d->getProgramiv(object(), GL_ACTIVE_ATTRIBUTES, &numAttribs);
179 context3d->getActiveAttrib(object(), i, info);
180 m_activeAttribLocations[i] = context3d->getAttribLocation(object(), info.name.utf8().data());
H A DWebGLShader.cpp59 void WebGLShader::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
61 context3d->deleteShader(object);
H A DWebGLVertexArrayObjectOES.cpp76 void WebGLVertexArrayObjectOES::dispatchDetached(blink::WebGraphicsContext3D* context3d) argument
79 m_boundElementArrayBuffer->onDetached(context3d);
84 state.bufferBinding->onDetached(context3d);
88 void WebGLVertexArrayObjectOES::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
94 context3d->deleteVertexArrayOES(object);
105 dispatchDetached(context3d);
107 dispatchDetached(context3d);
H A DWebGLRenderbuffer.h62 void deleteEmulatedStencilBuffer(blink::WebGraphicsContext3D* context3d);
H A DWebGLFramebuffer.cpp548 bool WebGLFramebuffer::onAccess(blink::WebGraphicsContext3D* context3d, const char** reason) argument
563 void WebGLFramebuffer::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
574 it->value->onDetached(context3d);
577 context3d->deleteFramebuffer(object);
H A DWebGLTexture.cpp254 void WebGLTexture::deleteObjectImpl(blink::WebGraphicsContext3D* context3d, Platform3DObject object) argument
256 context3d->deleteTexture(object);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGraphicsContext3DProvider.h46 virtual WebGraphicsContext3D* context3d() = 0;
/external/chromium_org/webkit/common/gpu/
H A Dgrcontext_for_webgraphicscontext3d.cc41 WebGraphicsContext3DImpl* context3d) {
42 if (!context3d)
47 gles2::SetGLContext(context3d->GetGLInterface());
49 context3d->createGrGLInterface());
55 reinterpret_cast<GrGLInterfaceCallbackData>(context3d);
40 GrContextForWebGraphicsContext3D( WebGraphicsContext3DImpl* context3d) argument
H A Dgrcontext_for_webgraphicscontext3d.h18 // This class binds an offscreen GrContext to an offscreen context3d. The
19 // context3d is used by the GrContext so must be valid as long as this class
24 WebGraphicsContext3DImpl* context3d);
H A Dcontext_provider_in_process.cc42 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
44 if (!context3d)
46 return new ContextProviderInProcess(context3d.Pass(), debug_name);
67 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
69 : context3d_(context3d.Pass()),
41 Create( scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d, const std::string& debug_name) argument
66 ContextProviderInProcess( scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d, const std::string& debug_name) argument
H A Dcontext_provider_in_process.h26 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
52 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
/external/chromium_org/content/renderer/
H A Dwebgraphicscontext3d_provider_impl.cc17 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { function in class:content::WebGraphicsContext3DProviderImpl
H A Dwebgraphicscontext3d_provider_impl.h29 virtual blink::WebGraphicsContext3D* context3d() OVERRIDE;
/external/chromium_org/cc/resources/
H A Dvideo_resource_updater_unittest.cc23 scoped_ptr<TestWebGraphicsContext3D> context3d = local
25 context3d_ = context3d.get();
28 FakeOutputSurface::Create3d(context3d.Pass());
H A Draster_worker_pool_unittest.cc269 TestWebGraphicsContext3D* context3d = context_provider_->TestContext3d(); local
270 context3d->set_support_sync_query(true);
335 TestWebGraphicsContext3D* context3d = context_provider_->TestContext3d();
336 context3d->set_times_map_image_chromium_succeeds(0);
337 context3d->set_times_map_buffer_chromium_succeeds(0);
/external/chromium_org/ui/compositor/test/
H A Din_process_context_factory.cc53 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d(
56 CHECK(context3d);
60 ContextProviderInProcess::Create(context3d.Pass(), "UICompositor");
/external/chromium_org/content/common/gpu/client/
H A Dcontext_provider_command_buffer.cc40 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
42 if (!context3d)
45 return new ContextProviderCommandBuffer(context3d.Pass(), debug_name);
49 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
51 : context3d_(context3d.Pass()),
39 Create( scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, const std::string& debug_name) argument
48 ContextProviderCommandBuffer( scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d, const std::string& debug_name) argument
H A Dcontext_provider_command_buffer.h31 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
57 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DCanvas2DLayerBridge.cpp121 ASSERT(mailboxInfo->m_status != MailboxReleased || m_contextProvider->context3d()->isContextLost() || !m_isSurfaceValid);
307 if (!m_isSurfaceValid || m_contextProvider->context3d()->isContextLost())
336 return m_contextProvider ? m_contextProvider->context3d() : 0;
344 if (m_contextProvider->context3d()->isContextLost()) {
369 sharedContext = m_contextProvider->context3d();
494 bool contextLost = !m_isSurfaceValid || m_contextProvider->context3d()->isContextLost();
H A DCanvas2DLayerBridgeTest.cpp59 MockWebGraphicsContext3DProvider(WebGraphicsContext3D* context3d) argument
60 : m_context3d(context3d) { }
62 WebGraphicsContext3D* context3d() function in class:__anon11301::MockWebGraphicsContext3DProvider
H A DCanvas2DLayerManagerTest.cpp48 MockWebGraphicsContext3DProvider(WebGraphicsContext3D* context3d) argument
49 : m_context3d(context3d) { }
51 WebGraphicsContext3D* context3d() function in class:__anon11305::MockWebGraphicsContext3DProvider
H A DImageBuffer.cpp180 WebGraphicsContext3D* sharedContext = provider->context3d();
240 WebGraphicsContext3D* context3D = provider->context3d();

Completed in 193 milliseconds

12