Searched defs:mailbox_holder (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/cc/resources/
H A Dtexture_mailbox.cc15 TextureMailbox::TextureMailbox(const gpu::MailboxHolder& mailbox_holder) argument
16 : mailbox_holder_(mailbox_holder),
H A Dtransferable_resource.h13 #include "gpu/command_buffer/common/mailbox_holder.h"
35 gpu::MailboxHolder mailbox_holder; member in struct:cc::TransferableResource
H A Dvideo_resource_updater.cc334 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/
H A Dreflector_impl.h13 #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,
H A Dreflector_impl.cc63 void ReflectorImpl::InitOnImplThread(const gpu::MailboxHolder& mailbox_holder) { argument
70 impl.mailbox_holder = mailbox_holder;
79 AttachToOutputSurfaceOnImplThread(impl.mailbox_holder, source_surface);
85 AttachToOutputSurfaceOnImplThread(impl.mailbox_holder, source_surface);
178 const gpu::MailboxHolder& mailbox_holder,
191 mailbox_holder.mailbox, mailbox_holder.sync_point);
177 AttachToOutputSurfaceOnImplThread( const gpu::MailboxHolder& mailbox_holder, BrowserCompositorOutputSurface* output_surface) argument
/external/chromium_org/content/renderer/media/
H A Dvideo_capture_message_filter.cc147 const gpu::MailboxHolder& mailbox_holder,
163 buffer_id, mailbox_holder, format, timestamp);
144 OnMailboxBufferReceived( int device_id, int buffer_id, const gpu::MailboxHolder& mailbox_holder, const media::VideoCaptureFormat& format, base::TimeTicks timestamp) argument
H A Dvideo_capture_impl.cc265 const gpu::MailboxHolder& mailbox_holder,
280 make_scoped_ptr(new gpu::MailboxHolder(mailbox_holder)),
263 OnMailboxBufferReceived( int buffer_id, const gpu::MailboxHolder& mailbox_holder, const media::VideoCaptureFormat& format, base::TimeTicks timestamp) argument
/external/chromium_org/mojo/services/public/cpp/view_manager/lib/
H A Dbitmap_uploader.cc136 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/content/browser/renderer_host/media/
H A Dvideo_capture_host.cc97 const gpu::MailboxHolder& mailbox_holder,
107 mailbox_holder,
162 const gpu::MailboxHolder& mailbox_holder,
171 controller_id.device_id, buffer_id, mailbox_holder, format, timestamp));
94 OnMailboxBufferReady( const VideoCaptureControllerID& controller_id, int buffer_id, const gpu::MailboxHolder& mailbox_holder, const media::VideoCaptureFormat& frame_format, base::TimeTicks timestamp) argument
159 DoSendFilledMailboxBufferOnIOThread( const VideoCaptureControllerID& controller_id, int buffer_id, const gpu::MailboxHolder& mailbox_holder, const media::VideoCaptureFormat& format, base::TimeTicks timestamp) argument
H A Dvideo_capture_host_unittest.cc142 const gpu::MailboxHolder& mailbox_holder,
255 const gpu::MailboxHolder& mailbox_holder,
259 device_id, buffer_id, mailbox_holder, format, timestamp);
253 OnMailboxBufferFilledDispatch(int device_id, int buffer_id, const gpu::MailboxHolder& mailbox_holder, const media::VideoCaptureFormat& format, base::TimeTicks timestamp) argument
/external/chromium_org/media/base/
H A Dvideo_frame_unittest.cc13 #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);
H A Dvideo_frame.cc14 #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
166 WrapNativeTexture( scoped_ptr<gpu::MailboxHolder> mailbox_holder, const ReleaseMailboxCB& mailbox_holder_release_cb, const gfx::Size& coded_size, const gfx::Rect& visible_rect, const gfx::Size& natural_size, base::TimeDelta timestamp, const ReadPixelsCB& read_pixels_cb) argument
705 VideoFrame(VideoFrame::Format format, const gfx::Size& coded_size, const gfx::Rect& visible_rect, const gfx::Size& natural_size, scoped_ptr<gpu::MailboxHolder> mailbox_holder, base::TimeDelta timestamp, bool end_of_stream) argument
/external/chromium_org/mojo/services/public/cpp/surfaces/tests/
H A Dsurface_unittest.cc10 #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
[all...]
/external/chromium_org/media/blink/
H A Dwebmediaplayer_impl.cc25 #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);
/external/chromium_org/content/renderer/media/android/
H A Dwebmediaplayer_android.cc33 #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);

Completed in 2952 milliseconds