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

  /external/chromium_org/content/renderer/gpu/
mailbox_output_surface.cc 40 if (pending_textures_.front().texture_id)
41 context3d_->deleteTexture(pending_textures_.front().texture_id);
49 if (!current_backing_.texture_id) {
61 context3d_->deleteTexture(texture.texture_id);
65 if (!current_backing_.texture_id) {
66 current_backing_.texture_id = context3d_->createTexture();
68 context3d_->bindTexture(GL_TEXTURE_2D, current_backing_.texture_id);
91 if (current_backing_.texture_id) {
92 context3d_->deleteTexture(current_backing_.texture_id);
98 context3d_->deleteTexture(frame.texture_id);
168 uint32 texture_id = pending_textures_.front().texture_id; local
    [all...]
mailbox_output_surface.h 47 TransferableFrame() : texture_id(0), sync_point(0) {}
49 TransferableFrame(uint32 texture_id,
52 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {}
54 uint32 texture_id; member in struct:content::MailboxOutputSurface::TransferableFrame
  /external/chromium_org/gpu/command_buffer/service/
stream_texture_manager_in_process_android.cc 23 GLint texture_id = 0; local
24 glGetIntegerv(GL_TEXTURE_BINDING_EXTERNAL_OES, &texture_id);
26 glBindTexture(GL_TEXTURE_EXTERNAL_OES, texture_id);
test_helper.cc 172 GLuint texture_id = 0; local
175 texture_id = kServiceDefaultTexture2dId;
178 texture_id = kServiceDefaultTextureCubemapId;
181 texture_id = kServiceDefaultExternalTextureId;
184 texture_id = kServiceDefaultRectangleTextureId;
190 EXPECT_CALL(*gl, DeleteTextures(1, Pointee(texture_id)))
  /external/chromium_org/media/video/
picture.h 19 PictureBuffer(int32 id, gfx::Size size, uint32 texture_id);
22 uint32 texture_id,
38 uint32 texture_id() const { function in class:media::PictureBuffer
  /external/chromium_org/ui/gl/android/
surface_texture_bridge.cc 29 SurfaceTextureBridge::SurfaceTextureBridge(int texture_id) {
31 j_surface_texture_.Reset(Java_SurfaceTextureBridge_create(env, texture_id));
84 int texture_id; local
85 glGetIntegerv(GL_TEXTURE_BINDING_EXTERNAL_OES, &texture_id);
86 DCHECK(texture_id);
89 env, j_surface_texture_.obj(), texture_id);
  /external/chromium_org/cc/layers/
texture_layer_impl.h 38 unsigned texture_id() const { return texture_id_; } function in class:cc::TextureLayerImpl
  /external/chromium_org/content/renderer/media/
renderer_gpu_video_decoder_factories.cc 153 uint32 texture_id = created_textures_[i]; local
154 gles2->BindTexture(texture_target, texture_id);
178 void RendererGpuVideoDecoderFactories::DeleteTexture(uint32 texture_id) {
180 AsyncDeleteTexture(texture_id);
184 &RendererGpuVideoDecoderFactories::AsyncDeleteTexture, this, texture_id));
187 void RendererGpuVideoDecoderFactories::AsyncDeleteTexture(uint32 texture_id) {
193 gles2->DeleteTextures(1, &texture_id);
226 uint32 texture_id, uint32 texture_target, const gfx::Size& size,
237 texture_id, texture_target, size));
243 AsyncReadPixels(texture_id, texture_target, size)
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_copy_texture_CHROMIUM_unittest.cc 345 GLuint texture_id; local
346 glGenTextures(1, &texture_id);
347 glBindTexture(GL_TEXTURE_2D, texture_id);
360 texture_id, 0);
400 EXPECT_EQ(texture_id, static_cast<GLuint>(fbo_params));
415 glDeleteTextures(1, &texture_id);
  /external/chromium_org/ppapi/c/dev/
pp_video_dev.h 97 uint32_t texture_id; member in struct:PP_PictureBuffer_Dev
  /external/chromium_org/cc/test/
layer_tree_pixel_test.cc 235 unsigned texture_id = context3d->createTexture(); local
236 context3d->bindTexture(GL_TEXTURE_2D, texture_id);
252 texture_id,
267 context3d->deleteTexture(texture_id);
321 unsigned texture_id = context3d->createTexture(); local
322 context3d->bindTexture(GL_TEXTURE_2D, texture_id);
375 texture_id),
test_web_graphics_context_3d.cc 283 WebGLId texture_id = NextTextureId(); local
284 DCHECK_NE(texture_id, kExternalTextureId);
286 namespace_->textures.push_back(texture_id);
287 return texture_id;
290 void TestWebGraphicsContext3D::deleteTexture(WebGLId texture_id) {
293 DCHECK(std::find(textures.begin(), textures.end(), texture_id) !=
295 textures.erase(std::find(textures.begin(), textures.end(), texture_id));
324 WGC3Denum target, WebGLId texture_id) {
333 if (!texture_id)
335 if (texture_id == kExternalTextureId
607 WebGLId texture_id = namespace_->next_texture_id++; local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
compositor_impl_android.cc 290 unsigned int texture_id = BuildBasicTexture(); local
293 if (texture_id == 0 || context->isContextLost() ||
309 return texture_id;
315 unsigned int texture_id = BuildBasicTexture(); local
318 if (texture_id == 0 || context->isContextLost() ||
330 return texture_id;
333 void CompositorImpl::DeleteTexture(WebKit::WebGLId texture_id) {
338 context->deleteTexture(texture_id);
342 bool CompositorImpl::CopyTextureToBitmap(WebKit::WebGLId texture_id,
344 return CopyTextureToBitmap(texture_id, gfx::Rect(bitmap.size()), bitmap)
    [all...]
  /external/chromium_org/content/common/gpu/media/
vaapi_video_decode_accelerator.cc 80 uint32 texture_id,
87 uint32 texture_id() { function in class:content::VaapiVideoDecodeAccelerator::TFPPicture
106 uint32 texture_id,
132 uint32 texture_id,
137 texture_id_(texture_id),
150 uint32 texture_id,
155 texture_id, size));
717 << " to texture id: " << buffers[i].texture_id()
722 buffers[i].id(), buffers[i].texture_id(),
video_decode_accelerator_unittest.cc 650 uint32 texture_id; local
653 rendering_window_id_, texture_target, &texture_id, &done);
655 CHECK(outstanding_texture_ids_.insert(texture_id).second);
657 new media::PictureBuffer(id, dimensions, texture_id);
668 CHECK_EQ(outstanding_texture_ids_.erase(it->second->texture_id()), 1U);
669 rendering_helper_->DeleteTexture(it->second->texture_id());
701 rendering_helper_->RenderTexture(picture_buffer->texture_id());
    [all...]
  /external/chromium_org/ppapi/examples/video_capture/
video_capture.cc 294 GLuint texture_id; local
295 gles2_if_->GenTextures(context_->pp_resource(), 1, &texture_id);
299 gles2_if_->BindTexture(context_->pp_resource(), GL_TEXTURE_2D, texture_id);
318 return texture_id;
  /external/chromium_org/cc/resources/
resource_provider.h 101 unsigned texture_id);
185 unsigned texture_id() const { return texture_id_; } function in class:cc::ResourceProvider::ScopedReadLockGL
223 unsigned texture_id() const { return texture_id_; } function in class:cc::ResourceProvider::ScopedWriteLockGL
340 Resource(unsigned texture_id,
resource_provider_unittest.cc 346 ASSERT_NE(0U, lock_gl.texture_id());
347 context->bindTexture(GL_TEXTURE_2D, lock_gl.texture_id());
402 EXPECT_NE(0u, lock_gl.texture_id());
405 context->bindTexture(GL_TEXTURE_2D, lock_gl.texture_id());
610 ASSERT_NE(0U, lock.texture_id());
611 child_context->bindTexture(GL_TEXTURE_2D, lock.texture_id());
617 ASSERT_NE(0U, lock.texture_id());
618 child_context->bindTexture(GL_TEXTURE_2D, lock.texture_id());
1048 int texture_id = 1; local
1121 int texture_id = 1; local
1193 unsigned texture_id = 1; local
1253 unsigned texture_id = 1; local
1374 int texture_id = 123; local
1441 int texture_id = 123; local
1521 int texture_id = 123; local
1561 int texture_id = 123; local
    [all...]
resource_provider.cc 53 unsigned texture_id = 0; local
54 GLC(context3d, texture_id = context3d->createTexture());
55 GLC(context3d, context3d->bindTexture(GL_TEXTURE_2D, texture_id));
64 return texture_id;
98 unsigned texture_id,
104 : gl_id(texture_id),
265 unsigned texture_id) {
270 GLC(context3d, context3d->bindTexture(texture_target, texture_id));
281 Resource resource(texture_id, gfx::Size(), 0, GL_LINEAR, 0, TextureUsageAny);
871 unsigned texture_id; local
    [all...]
  /external/chromium_org/ppapi/examples/video_decode/
video_decode.cc 215 gles2_->DeleteTexture(it->second.buffer.texture_id);
375 info.buffer.texture_id = gles2_->CreateTexture(
403 picture_buffer_id).buffer.texture_id);
449 context_->pp_resource(), info.texture_target, info.buffer.texture_id);
538 GLuint texture_id; local
539 gles2_if_->GenTextures(context_->pp_resource(), 1, &texture_id);
543 gles2_if_->BindTexture(context_->pp_resource(), texture_target, texture_id);
563 return texture_id;
  /external/chromium_org/cc/output/
gl_renderer.cc 500 lock.texture_id(),
548 backend_texture_description.fTextureHandle = lock.texture_id();
660 GetFramebufferTexture(lock.texture_id(),
809 lock.texture_id(),
836 mask_texture_id = mask_resource_lock->texture_id();
2220 unsigned int texture_id = context_->createTexture(); local
2531 unsigned texture_id = current_framebuffer_lock_->texture_id(); local
    [all...]

Completed in 1623 milliseconds