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

  /external/chromium_org/cc/resources/
transferable_resource.h 13 #include "gpu/command_buffer/common/mailbox_holder.h"
35 gpu::MailboxHolder mailbox_holder; member in struct:cc::TransferableResource
video_resource_updater.cc 334 const gpu::MailboxHolder* mailbox_holder = video_frame->mailbox_holder(); local
336 switch (mailbox_holder->texture_target) {
353 TextureMailbox(mailbox_holder->mailbox,
354 mailbox_holder->texture_target,
355 mailbox_holder->sync_point));
  /external/chromium_org/content/browser/compositor/
reflector_impl.h 13 #include "gpu/command_buffer/common/mailbox_holder.h"
47 void InitOnImplThread(const gpu::MailboxHolder& mailbox_holder);
99 gpu::MailboxHolder mailbox_holder; member in struct:content::ReflectorImpl::ImplThreadData
105 const gpu::MailboxHolder& mailbox_holder,
  /external/chromium_org/mojo/services/public/cpp/view_manager/lib/
bitmap_uploader.cc 136 MailboxHolderPtr mailbox_holder = MailboxHolder::New(); local
137 mailbox_holder->mailbox = Mailbox::From(mailbox);
138 mailbox_holder->texture_target = GL_TEXTURE_2D;
139 mailbox_holder->sync_point = sync_point;
140 resource->mailbox_holder = mailbox_holder.Pass();
  /external/chromium_org/media/base/
video_frame_unittest.cc 13 #include "gpu/command_buffer/common/mailbox_holder.h"
305 const gpu::MailboxHolder* mailbox_holder = frame->mailbox_holder(); local
307 EXPECT_EQ(mailbox.name[0], mailbox_holder->mailbox.name[0]);
308 EXPECT_EQ(target, mailbox_holder->texture_target);
309 EXPECT_EQ(sync_point, mailbox_holder->sync_point);
313 EXPECT_EQ(sync_point, mailbox_holder->sync_point);
video_frame.cc 14 #include "gpu/command_buffer/common/mailbox_holder.h"
167 scoped_ptr<gpu::MailboxHolder> mailbox_holder,
178 mailbox_holder.Pass(),
709 scoped_ptr<gpu::MailboxHolder> mailbox_holder,
716 mailbox_holder_(mailbox_holder.Pass()),
889 const gpu::MailboxHolder* VideoFrame::mailbox_holder() const { function in class:media::VideoFrame
  /external/chromium_org/mojo/services/public/cpp/surfaces/tests/
surface_unittest.cc 10 #include "gpu/command_buffer/common/mailbox_holder.h"
397 gpu::MailboxHolder mailbox_holder; local
406 resource.mailbox_holder = mailbox_holder;
425 EXPECT_EQ(mailbox_holder.mailbox, round_trip_resource.mailbox_holder.mailbox);
426 EXPECT_EQ(mailbox_holder.texture_target,
427 round_trip_resource.mailbox_holder.texture_target);
428 EXPECT_EQ(mailbox_holder.sync_point,
429 round_trip_resource.mailbox_holder.sync_point)
    [all...]
  /external/chromium_org/media/blink/
webmediaplayer_impl.cc 25 #include "gpu/command_buffer/common/mailbox_holder.h"
601 const gpu::MailboxHolder* mailbox_holder = video_frame->mailbox_holder(); local
602 if (mailbox_holder->texture_target != GL_TEXTURE_2D)
605 web_graphics_context->waitSyncPoint(mailbox_holder->sync_point);
607 GL_TEXTURE_2D, mailbox_holder->mailbox.name);
    [all...]
  /external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc 33 #include "gpu/command_buffer/common/mailbox_holder.h"
649 const gpu::MailboxHolder* mailbox_holder = video_frame->mailbox_holder(); local
651 mailbox_holder->texture_target == GL_TEXTURE_EXTERNAL_OES) ||
652 (is_remote_ && mailbox_holder->texture_target == GL_TEXTURE_2D));
654 web_graphics_context->waitSyncPoint(mailbox_holder->sync_point);
659 mailbox_holder->texture_target, mailbox_holder->mailbox.name);
    [all...]

Completed in 217 milliseconds