Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(462)

Side by Side Diff: cc/surfaces/surface_factory.cc

Issue 2806163004: Plumbing input event latency reporting through Mus GPU. (Closed)
Patch Set: Inline LatencyTracker in DIsplayOutputService. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/surfaces/compositor_frame_sink_support_unittest.cc ('k') | cc/test/test_context_support.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "cc/surfaces/surface_factory.h" 5 #include "cc/surfaces/surface_factory.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/memory/ptr_util.h" 9 #include "base/memory/ptr_util.h"
10 #include "base/trace_event/trace_event.h" 10 #include "base/trace_event/trace_event.h"
(...skipping 29 matching lines...) Expand all
40 return; 40 return;
41 Destroy(std::move(current_surface_)); 41 Destroy(std::move(current_surface_));
42 } 42 }
43 43
44 void SurfaceFactory::SubmitCompositorFrame( 44 void SurfaceFactory::SubmitCompositorFrame(
45 const LocalSurfaceId& local_surface_id, 45 const LocalSurfaceId& local_surface_id,
46 CompositorFrame frame, 46 CompositorFrame frame,
47 const DrawCallback& callback) { 47 const DrawCallback& callback) {
48 TRACE_EVENT0("cc", "SurfaceFactory::SubmitCompositorFrame"); 48 TRACE_EVENT0("cc", "SurfaceFactory::SubmitCompositorFrame");
49 DCHECK(local_surface_id.is_valid()); 49 DCHECK(local_surface_id.is_valid());
50
51 for (ui::LatencyInfo& latency : frame.metadata.latency_info) {
52 if (latency.latency_components().size() > 0) {
53 latency.AddLatencyNumber(ui::DISPLAY_COMPOSITOR_RECEIVED_FRAME_COMPONENT,
54 0, 0);
55 }
56 }
57
50 std::unique_ptr<Surface> surface; 58 std::unique_ptr<Surface> surface;
51 bool create_new_surface = 59 bool create_new_surface =
52 (!current_surface_ || 60 (!current_surface_ ||
53 local_surface_id != current_surface_->surface_id().local_surface_id()); 61 local_surface_id != current_surface_->surface_id().local_surface_id());
54 if (!create_new_surface) { 62 if (!create_new_surface) {
55 surface = std::move(current_surface_); 63 surface = std::move(current_surface_);
56 } else { 64 } else {
57 surface = Create(local_surface_id); 65 surface = Create(local_surface_id);
58 } 66 }
59 surface->QueueFrame(std::move(frame), callback); 67 surface->QueueFrame(std::move(frame), callback);
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 surface->AddObserver(this); 150 surface->AddObserver(this);
143 return surface; 151 return surface;
144 } 152 }
145 153
146 void SurfaceFactory::Destroy(std::unique_ptr<Surface> surface) { 154 void SurfaceFactory::Destroy(std::unique_ptr<Surface> surface) {
147 surface->RemoveObserver(this); 155 surface->RemoveObserver(this);
148 manager_->DestroySurface(std::move(surface)); 156 manager_->DestroySurface(std::move(surface));
149 } 157 }
150 158
151 } // namespace cc 159 } // namespace cc
OLDNEW
« no previous file with comments | « cc/surfaces/compositor_frame_sink_support_unittest.cc ('k') | cc/test/test_context_support.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698