HomeSort by relevance Sort by last modified time
    Searched refs:texture_id (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/chromium_org/ppapi/proxy/
video_decoder_resource.cc 52 VideoDecoderResource::Picture::Picture(int32_t decode_id, uint32_t texture_id)
53 : decode_id(decode_id), texture_id(texture_id) {
264 Post(RENDERER, PpapiHostMsg_VideoDecoder_RecyclePicture(picture->texture_id));
389 uint32_t texture_id) {
390 received_pictures_.push(Picture(decode_id, texture_id));
405 uint32_t texture_id) {
406 DeleteGLTexture(texture_id);
407 textures_.erase(texture_id);
475 received_pictures_.front().texture_id));
    [all...]
video_decoder_resource_unittest.cc 220 uint32_t texture_id) {
224 PpapiPluginMsg_VideoDecoder_PictureReady(decode_count, texture_id));
263 uint32_t* texture_id) {
270 texture_id);
487 ASSERT_EQ(kTextureId1, picture.texture_id);
490 uint32_t texture_id; local
491 ASSERT_TRUE(CheckRecyclePictureMsg(&params, &texture_id));
492 ASSERT_EQ(kTextureId1, texture_id);
523 picture.texture_id = kTextureId1;
525 uint32_t texture_id; local
    [all...]
  /external/chromium_org/content/renderer/pepper/
video_decoder_shim.cc 395 uint32_t plugin_texture_id = buffers[i].texture_id();
405 uint32_t texture_id = static_cast<uint32_t>(picture_buffer_id); local
406 if (textures_to_dismiss_.find(texture_id) != textures_to_dismiss_.end()) {
407 DismissTexture(texture_id);
408 } else if (texture_id_map_.find(texture_id) != texture_id_map_.end()) {
409 available_textures_.insert(texture_id);
513 uint32_t texture_id = *it; local
516 uint32_t local_texture_id = texture_id_map_[texture_id];
530 host_->PictureReady(media::Picture(texture_id, frame->decode_id));
571 void VideoDecoderShim::DismissTexture(uint32_t texture_id) {
    [all...]
video_decoder_shim.h 82 void DismissTexture(uint32_t texture_id);
83 void DeleteTexture(uint32_t texture_id);
  /external/chromium_org/content/common/gpu/media/
exynos_v4l2_video_device.h 34 GLuint texture_id,
tegra_v4l2_video_device.h 37 GLuint texture_id,
v4l2_video_device.h 75 // acquiring one and associating it to the given texture. The texture_id is
81 GLuint texture_id,
rendering_helper.cc 401 uint32* texture_id,
409 texture_id,
414 glGenTextures(1, texture_id);
415 glBindTexture(texture_target, *texture_id);
443 uint32 texture_id) {
457 RenderTexture(texture_target, texture_id);
462 void RenderingHelper::RenderTexture(uint32 texture_target, uint32 texture_id) {
470 glBindTexture(texture_target, texture_id);
476 void RenderingHelper::DeleteTexture(uint32 texture_id) {
477 glDeleteTextures(1, &texture_id);
    [all...]
exynos_v4l2_video_device.cc 142 GLuint texture_id,
184 glBindTexture(GL_TEXTURE_EXTERNAL_OES, texture_id);
tegra_v4l2_video_device.cc 175 GLuint texture_id,
185 reinterpret_cast<EGLClientBuffer>(texture_id),
  /external/chromium_org/content/renderer/media/android/
stream_texture_factory_impl.cc 141 unsigned* texture_id,
145 gl->GenTextures(1, texture_id);
147 stream_id = gl->CreateStreamTextureCHROMIUM(*texture_id);
150 gl->BindTexture(texture_target, *texture_id);
stream_texture_factory_synchronous_impl.cc 192 unsigned* texture_id,
197 gl->GenTextures(1, texture_id);
198 stream_id = gl->CreateStreamTextureCHROMIUM(*texture_id);
201 gl->BindTexture(texture_target, *texture_id);
stream_texture_factory_synchronous_impl.h 53 unsigned* texture_id,
  /external/chromium_org/content/renderer/media/
renderer_gpu_video_accelerator_factories.cc 117 uint32 texture_id = texture_ids->at(i); local
118 gles2->BindTexture(texture_target, texture_id);
148 void RendererGpuVideoAcceleratorFactories::DeleteTexture(uint32 texture_id) {
156 gles2->DeleteTextures(1, &texture_id);
176 uint32 texture_id,
195 GL_TEXTURE_2D, texture_id, tmp_texture, 0, GL_RGBA, GL_UNSIGNED_BYTE);
rtc_video_decoder.cc 347 factories_->DeleteTexture(buffer_to_dismiss.texture_id());
377 pb.texture_id())).second;
398 uint32 texture_id,
402 factories->ReadPixels(texture_id, visible_rect, pixels);
408 uint32 texture_id,
415 texture_id,
442 pb.texture_id())),
447 base::Bind(&ReadPixelsSync, factories_, pb.texture_id(), visible_rect));
641 uint32 texture_id,
654 factories->DeleteTexture(texture_id);
664 uint32 texture_id = display_iterator->second; local
    [all...]
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 207 factories_->DeleteTexture(it->second.texture_id());
386 factories_->DeleteTexture(buffer_to_dismiss.texture_id());
396 uint32 texture_id,
400 factories->ReadPixels(texture_id, visible_rect, pixels);
406 uint32 texture_id,
413 texture_id,
449 pb.texture_id())),
454 base::Bind(&ReadPixelsSync, factories_, pb.texture_id(), visible_rect)));
460 pb.texture_id())).second;
483 uint32 texture_id,
506 uint32 texture_id = display_iterator->second; local
    [all...]
  /external/chromium_org/cc/test/
layer_tree_pixel_test.cc 240 GLuint texture_id = 0; local
241 gl->GenTextures(1, &texture_id);
242 gl->BindTexture(GL_TEXTURE_2D, texture_id);
254 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture_id, 0);
268 gl->DeleteTextures(1, &texture_id);
315 GLuint texture_id = 0; local
316 gl->GenTextures(1, &texture_id);
317 gl->BindTexture(GL_TEXTURE_2D, texture_id);
368 texture_id));
test_web_graphics_context_3d.cc 310 GLenum target, GLuint texture_id) {
319 if (!texture_id)
322 DCHECK(namespace_->textures.ContainsId(texture_id));
323 texture_targets_.BindTexture(target, texture_id);
324 used_textures_.insert(texture_id);
610 GLuint texture_id = namespace_->next_texture_id++; local
611 DCHECK(texture_id < (1 << 16));
612 texture_id |= context_id_ << 16;
613 return texture_id;
619 unsigned texture_id = id & 0xffff
    [all...]
  /external/chromium_org/content/common/gpu/
stream_texture_android.h 32 uint32 texture_id);
stream_texture_android.cc 65 uint32 texture_id)
66 : surface_texture_(gfx::SurfaceTexture::Create(texture_id)),
  /frameworks/base/media/mca/filterfw/native/core/
gl_frame.h 54 bool InitWithTexture(GLint texture_id, int width, int height);
  /external/chromium_org/gpu/command_buffer/service/
async_pixel_transfer_manager_share_group.cc 152 void BindAndRun(GLuint texture_id) {
158 glBindTexture(GL_TEXTURE_2D, texture_id);
197 // The texture_id is accessed by either thread, but everything
202 TransferStateInternal(GLuint texture_id,
204 : texture_id_(texture_id), define_params_(define_params) {}
378 GLuint texture_id,
406 GLuint texture_id,
409 state_(new TransferStateInternal(texture_id, define_params)) {}
texture_definition.cc 108 static scoped_refptr<NativeImageBufferEGL> Create(GLuint texture_id);
145 GLuint texture_id) {
151 DCHECK(glIsTexture(texture_id));
160 EGLClientBuffer egl_buffer = reinterpret_cast<EGLClientBuffer>(texture_id);
332 scoped_refptr<NativeImageBuffer> NativeImageBuffer::Create(GLuint texture_id) {
336 return NativeImageBufferEGL::Create(texture_id);
420 GLuint texture_id;
421 glGenTextures(1, &texture_id);
423 Texture* texture(new Texture(texture_id));
  /external/chromium_org/cc/resources/
resource_provider_unittest.cc 345 ASSERT_NE(0U, lock_gl.texture_id());
346 context->bindTexture(GL_TEXTURE_2D, lock_gl.texture_id());
758 ASSERT_NE(0U, lock.texture_id());
759 child_context_->bindTexture(GL_TEXTURE_2D, lock.texture_id());
766 ASSERT_NE(0U, lock.texture_id());
767 child_context_->bindTexture(GL_TEXTURE_2D, lock.texture_id());
774 ASSERT_NE(0U, lock.texture_id());
775 child_context_->bindTexture(GL_TEXTURE_2D, lock.texture_id());
2228 int texture_id = 1; local
2309 int texture_id = 1; local
2445 unsigned texture_id = 1; local
2509 unsigned texture_id = 1; local
2653 int texture_id = 123; local
2723 int texture_id = 123; local
2760 int texture_id = 123; local
2795 int texture_id = 123; local
2836 int texture_id = 123; local
2877 int texture_id = 123; local
3237 int texture_id = 123; local
3272 int texture_id = 123; local
    [all...]
  /external/chromium_org/gpu/command_buffer/tests/
gl_readback_unittest.cc 235 GLuint texture_id = 0; local
236 glGenTextures(1, &texture_id);
237 glBindTexture(GL_TEXTURE_2D, texture_id);
246 GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture_id, 0);
315 glDeleteTextures(1, &texture_id);

Completed in 323 milliseconds

12 3 4 5