HomeSort by relevance Sort by last modified time
    Searched refs:sync_point (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/chromium_org/cc/output/
gl_frame_data.cc 9 GLFrameData::GLFrameData() : sync_point(0) {}
gl_frame_data.h 24 uint32 sync_point; member in class:cc::GLFrameData
  /external/chromium_org/cc/resources/
transferable_resource.cc 12 sync_point(0),
texture_mailbox.h 22 typedef base::Callback<void(unsigned sync_point,
31 unsigned sync_point);
35 unsigned sync_point);
54 void RunReleaseCallback(unsigned sync_point, bool lost_resource) const;
57 unsigned sync_point() const { return sync_point_; } function in class:cc::TextureMailbox
sync_point_helper.cc 28 unsigned sync_point,
34 context3d->signalSyncPoint(sync_point, callback_class);
sync_point_helper.h 17 // Requests a callback to |closure| when the |sync_point| is reached by the
24 unsigned sync_point,
transferable_resource.h 22 unsigned sync_point; member in struct:cc::TransferableResource
texture_mailbox.cc 46 unsigned sync_point)
49 sync_point_(sync_point),
59 unsigned sync_point)
62 sync_point_(sync_point),
100 void TextureMailbox::RunReleaseCallback(unsigned sync_point,
103 callback_.Run(sync_point, lost_resource);
  /external/chromium_org/content/common/gpu/
sync_point_manager.cc 20 uint32 sync_point = next_sync_point_++; local
27 CHECK(sync_point_map_.find(sync_point) == sync_point_map_.end());
28 sync_point_map_.insert(std::make_pair(sync_point, ClosureList()));
29 return sync_point;
32 void SyncPointManager::RetireSyncPoint(uint32 sync_point) {
37 SyncPointMap::iterator it = sync_point_map_.find(sync_point);
46 void SyncPointManager::AddSyncPointCallback(uint32 sync_point,
51 SyncPointMap::iterator it = sync_point_map_.find(sync_point);
sync_point_manager.h 30 void RetireSyncPoint(uint32 sync_point);
36 void AddSyncPointCallback(uint32 sync_point, const base::Closure& callback);
gpu_channel_manager.cc 24 int32 sync_point, base::Closure callback)
25 : sync_point(sync_point),
217 int32 client_id, int32 image_id, int32 sync_point) {
220 if (!sync_point && image_operations_.empty()) {
224 new ImageOperation(sync_point,
229 if (sync_point) {
231 sync_point,
242 image_operation->sync_point = 0;
247 if (image_operations_.front()->sync_point)
    [all...]
gpu_channel_manager.h 102 ImageOperation(int32 sync_point, base::Closure callback);
105 int32 sync_point; member in struct:content::GpuChannelManager::ImageOperation
126 void OnDeleteImage(int32 client_id, int32 image_id, int32 sync_point);
  /external/chromium_org/media/base/
video_frame_unittest.cc 214 static void TextureCallback(uint32* called_sync_point, uint32 sync_point) {
215 *called_sync_point = sync_point;
221 uint32 sync_point = 7; local
228 sync_point,
240 EXPECT_EQ(sync_point, called_sync_point);
250 uint32 sync_point = 7; local
257 sync_point,
272 EXPECT_EQ(sync_point, mailbox_holder->sync_point());
276 sync_point = 12
298 uint32 sync_point = 7; local
349 uint32 sync_point = 7; local
393 uint32 sync_point = 7; local
    [all...]
  /external/chromium_org/content/renderer/gpu/
mailbox_output_surface.h 47 TransferableFrame() : texture_id(0), sync_point(0) {}
52 : texture_id(texture_id), mailbox(mailbox), size(size), sync_point(0) {}
57 uint32 sync_point; member in struct:content::MailboxOutputSurface::TransferableFrame
  /external/chromium_org/content/renderer/media/
renderer_gpu_video_decoder_factories.cc 115 uint32 sync_point = 0; local
118 AsyncCreateTextures(count, size, texture_target, &sync_point);
122 return sync_point;
126 count, size, texture_target, &sync_point));
134 return sync_point;
139 uint32* sync_point) {
174 *sync_point = gles2->InsertSyncPointCHROMIUM();
197 void RendererGpuVideoDecoderFactories::WaitSyncPoint(uint32 sync_point) {
199 AsyncWaitSyncPoint(sync_point);
207 sync_point));
    [all...]
renderer_gpu_video_decoder_factories.h 59 virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE;
94 uint32 texture_target, uint32* sync_point);
96 void AsyncWaitSyncPoint(uint32 sync_point);
  /external/chromium_org/content/browser/renderer_host/
image_transport_factory_android.h 36 virtual void WaitSyncPoint(uint32_t sync_point) = 0;
  /external/chromium_org/content/common/gpu/client/
gpu_context_tests.h 25 void testSignalSyncPoint(unsigned sync_point) {
28 context_.get(), sync_point, run_loop.QuitClosure());
  /external/chromium_org/cc/layers/
texture_layer.cc 269 sync_point_(mailbox.sync_point()),
283 void TextureLayer::MailboxHolder::Return(unsigned sync_point, bool is_lost) {
284 sync_point_ = sync_point;
310 unsigned sync_point, bool is_lost) {
312 Return(sync_point, is_lost);
317 unsigned sync_point, bool is_lost) {
320 this, sync_point, is_lost));
texture_layer.h 112 void Return(unsigned sync_point, bool is_lost);
125 void ReturnAndReleaseOnMainThread(unsigned sync_point, bool is_lost);
126 void ReturnAndReleaseOnImplThread(unsigned sync_point, bool is_lost);
  /external/chromium_org/content/browser/aura/
image_transport_factory.h 91 virtual void WaitSyncPoint(uint32 sync_point) = 0;
no_transport_image_transport_factory.cc 45 void NoTransportImageTransportFactory::WaitSyncPoint(uint32 sync_point) {}
no_transport_image_transport_factory.h 33 virtual void WaitSyncPoint(uint32 sync_point) OVERRIDE;
  /external/chromium_org/media/filters/
gpu_video_decoder_factories.h 38 virtual void WaitSyncPoint(uint32 sync_point) = 0;
mock_gpu_video_decoder_factories.h 36 MOCK_METHOD1(WaitSyncPoint, void(uint32 sync_point));

Completed in 391 milliseconds

1 2 3 4 5