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

12

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLObject.cpp50 void WebGLObject::deleteObject(GraphicsContext3D* context3d) argument
60 if (!context3d)
61 context3d = getAGraphicsContext3D();
63 if (context3d)
64 deleteObjectImpl(context3d, m_object);
76 void WebGLObject::onDetached(GraphicsContext3D* context3d) argument
81 deleteObject(context3d);
H A DWebGLRenderbuffer.cpp56 void WebGLRenderbuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
58 context3d->deleteRenderbuffer(object);
59 deleteEmulatedStencilBuffer(context3d);
62 void WebGLRenderbuffer::deleteEmulatedStencilBuffer(GraphicsContext3D* context3d) argument
66 m_emulatedStencilBuffer->deleteObject(context3d);
H A DWebGLBuffer.cpp52 void WebGLBuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
54 context3d->deleteBuffer(object);
H A DWebGLProgram.cpp54 void WebGLProgram::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject obj) argument
56 context3d->deleteProgram(obj);
58 m_vertexShader->onDetached(context3d);
62 m_fragmentShader->onDetached(context3d);
161 void WebGLProgram::cacheActiveAttribLocations(GraphicsContext3D* context3d) argument
166 context3d->getProgramiv(object(), GL_ACTIVE_ATTRIBUTES, &numAttribs);
170 context3d->getActiveAttrib(object(), i, info);
171 m_activeAttribLocations[i] = context3d->getAttribLocation(object(), info.name);
H A DWebGLShader.cpp53 void WebGLShader::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
55 context3d->deleteShader(object);
H A DWebGLVertexArrayObjectOES.cpp64 void WebGLVertexArrayObjectOES::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
66 Extensions3D* extensions = context3d->extensions();
76 m_boundElementArrayBuffer->onDetached(context3d);
81 state.bufferBinding->onDetached(context3d);
H A DWebGLRenderbuffer.h65 void deleteEmulatedStencilBuffer(GraphicsContext3D* context3d);
H A DWebGLFramebuffer.cpp574 bool WebGLFramebuffer::onAccess(GraphicsContext3D* context3d, const char** reason) argument
589 void WebGLFramebuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
592 it->value->onDetached(context3d);
594 context3d->deleteFramebuffer(object);
H A DWebGLTexture.cpp248 void WebGLTexture::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object) argument
250 context3d->deleteTexture(object);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGraphicsContext3DProvider.h45 virtual WebGraphicsContext3D* context3d() = 0;
/external/chromium_org/webkit/common/gpu/
H A Dgrcontext_for_webgraphicscontext3d.cc24 blink::WebGraphicsContext3D* context3d) {
25 if (!context3d)
29 context3d->createGrGLInterface());
36 reinterpret_cast<GrGLInterfaceCallbackData>(context3d);
23 GrContextForWebGraphicsContext3D( blink::WebGraphicsContext3D* context3d) argument
H A Dwebgraphicscontext3d_provider_impl.cc18 blink::WebGraphicsContext3D* WebGraphicsContext3DProviderImpl::context3d() { function in class:webkit::gpu::WebGraphicsContext3DProviderImpl
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 blink::WebGraphicsContext3D* context3d);
H A Dwebgraphicscontext3d_provider_impl.h26 virtual blink::WebGraphicsContext3D* context3d() OVERRIDE;
H A Dcontext_provider_in_process.cc42 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
44 if (!context3d)
46 return new ContextProviderInProcess(context3d.Pass(), debug_name);
65 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
67 : context3d_(context3d.Pass()),
41 Create( scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d, const std::string& debug_name) argument
64 ContextProviderInProcess( scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d, const std::string& debug_name) argument
H A Dcontext_provider_in_process.h26 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
51 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d,
/external/chromium_org/content/renderer/gpu/
H A Dmailbox_output_surface.cc56 blink::WebGraphicsContext3D* context3d = context_provider_->Context3d(); local
65 context3d->waitSyncPoint(current_backing_.sync_point);
70 context3d->deleteTexture(texture.texture_id);
75 current_backing_.texture_id = context3d->createTexture();
77 context3d->bindTexture(GL_TEXTURE_2D, current_backing_.texture_id);
78 context3d->texParameteri(
80 context3d->texParameteri(
82 context3d->texParameteri(
84 context3d->texParameteri(
86 context3d
106 blink::WebGraphicsContext3D* context3d = context_provider_->Context3d(); local
140 blink::WebGraphicsContext3D* context3d = context_provider_->Context3d(); local
[all...]
/external/chromium_org/cc/test/
H A Dlayer_tree_pixel_test.cc238 scoped_ptr<blink::WebGraphicsContext3D> context3d(
242 EXPECT_TRUE(context3d->makeContextCurrent());
245 context3d->waitSyncPoint(texture_mailbox.sync_point());
247 unsigned texture_id = context3d->createTexture();
248 context3d->bindTexture(GL_TEXTURE_2D, texture_id);
249 context3d->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
250 context3d->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
251 context3d->texParameteri(
253 context3d->texParameteri(
255 context3d
307 ReleaseTextureMailbox( scoped_ptr<blink::WebGraphicsContext3D> context3d, uint32 texture, uint32 sync_point, bool lost_resource) argument
[all...]
H A Dlayer_tree_pixel_test.h83 scoped_ptr<blink::WebGraphicsContext3D> context3d,
/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()),
74 WebGraphicsContext3DCommandBufferImpl* context3d ALLOW_UNUSED =
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.h30 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
56 scoped_ptr<WebGraphicsContext3DCommandBufferImpl> context3d,
/external/chromium_org/cc/resources/
H A Dvideo_resource_updater_unittest.cc21 scoped_ptr<TestWebGraphicsContext3D> context3d = local
23 context3d_ = context3d.get();
26 FakeOutputSurface::Create3d(context3d.Pass());
H A Draster_worker_pool_unittest.cc275 TestWebGraphicsContext3D* context3d = context_provider_->TestContext3d(); variable
276 context3d->set_times_map_image_chromium_succeeds(0);
277 context3d->set_times_map_buffer_chromium_succeeds(0);
/external/chromium_org/ui/compositor/test/
H A Ddefault_context_factory.cc42 scoped_ptr<WebGraphicsContext3DInProcessCommandBufferImpl> context3d(
45 CHECK(context3d);
49 ContextProviderInProcess::Create(context3d.Pass(),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DSharedGraphicsContext3D.cpp53 webContext = provider->context3d();

Completed in 474 milliseconds

12