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

Side by Side Diff: services/ui/surfaces/display_output_surface.cc

Issue 2771053003: WIP: Plumbing input event latency reporting through Mus GPU.
Patch Set: Created 3 years, 9 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
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 "services/ui/surfaces/display_output_surface.h" 5 #include "services/ui/surfaces/display_output_surface.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
11 #include "base/threading/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "cc/output/context_provider.h" 12 #include "cc/output/context_provider.h"
13 #include "cc/output/output_surface_client.h" 13 #include "cc/output/output_surface_client.h"
14 #include "cc/output/output_surface_frame.h" 14 #include "cc/output/output_surface_frame.h"
15 #include "cc/scheduler/begin_frame_source.h" 15 #include "cc/scheduler/begin_frame_source.h"
16 #include "gpu/command_buffer/client/context_support.h" 16 #include "gpu/command_buffer/client/context_support.h"
17 #include "gpu/command_buffer/client/gles2_interface.h" 17 #include "gpu/command_buffer/client/gles2_interface.h"
18 #include "gpu/ipc/gl_in_process_context.h"
19 #include "components/latency_tracker/latency_tracker.h"
18 20
19 namespace ui { 21 namespace ui {
20 22
21 DisplayOutputSurface::DisplayOutputSurface( 23 DisplayOutputSurface::DisplayOutputSurface(
22 scoped_refptr<cc::InProcessContextProvider> context_provider, 24 scoped_refptr<cc::InProcessContextProvider> context_provider,
23 cc::SyntheticBeginFrameSource* synthetic_begin_frame_source) 25 cc::SyntheticBeginFrameSource* synthetic_begin_frame_source)
24 : cc::OutputSurface(context_provider), 26 : cc::OutputSurface(context_provider),
25 synthetic_begin_frame_source_(synthetic_begin_frame_source), 27 synthetic_begin_frame_source_(synthetic_begin_frame_source),
28 latency_tracker_(new latency_tracker::LatencyTracker),
26 weak_ptr_factory_(this) { 29 weak_ptr_factory_(this) {
27 capabilities_.flipped_output_surface = 30 capabilities_.flipped_output_surface =
28 context_provider->ContextCapabilities().flips_vertically; 31 context_provider->ContextCapabilities().flips_vertically;
29 capabilities_.supports_stencil = 32 capabilities_.supports_stencil =
30 context_provider->ContextCapabilities().num_stencil_bits > 0; 33 context_provider->ContextCapabilities().num_stencil_bits > 0;
31 context_provider->SetSwapBuffersCompletionCallback( 34 context_provider->SetSwapBuffersCompletionCallback(
32 base::Bind(&DisplayOutputSurface::OnGpuSwapBuffersCompleted, 35 base::Bind(&DisplayOutputSurface::OnGpuSwapBuffersCompleted,
33 weak_ptr_factory_.GetWeakPtr())); 36 weak_ptr_factory_.GetWeakPtr()));
34 context_provider->SetUpdateVSyncParametersCallback( 37 context_provider->SetUpdateVSyncParametersCallback(
35 base::Bind(&DisplayOutputSurface::OnVSyncParametersUpdated, 38 base::Bind(&DisplayOutputSurface::OnVSyncParametersUpdated,
36 weak_ptr_factory_.GetWeakPtr())); 39 weak_ptr_factory_.GetWeakPtr()));
40 in_process_command_buffer_ = context_provider->context()->GetInProcessCommandB uffer();
37 } 41 }
38 42
39 DisplayOutputSurface::~DisplayOutputSurface() {} 43 DisplayOutputSurface::~DisplayOutputSurface() {}
40 44
41 void DisplayOutputSurface::BindToClient(cc::OutputSurfaceClient* client) { 45 void DisplayOutputSurface::BindToClient(cc::OutputSurfaceClient* client) {
42 DCHECK(client); 46 DCHECK(client);
43 DCHECK(!client_); 47 DCHECK(!client_);
44 client_ = client; 48 client_ = client;
45 } 49 }
46 50
(...skipping 25 matching lines...) Expand all
72 bool has_alpha, 76 bool has_alpha,
73 bool use_stencil) { 77 bool use_stencil) {
74 size_ = size; 78 size_ = size;
75 has_set_draw_rectangle_since_last_resize_ = false; 79 has_set_draw_rectangle_since_last_resize_ = false;
76 context_provider()->ContextGL()->ResizeCHROMIUM( 80 context_provider()->ContextGL()->ResizeCHROMIUM(
77 size.width(), size.height(), device_scale_factor, has_alpha); 81 size.width(), size.height(), device_scale_factor, has_alpha);
78 } 82 }
79 83
80 void DisplayOutputSurface::SwapBuffers(cc::OutputSurfaceFrame frame) { 84 void DisplayOutputSurface::SwapBuffers(cc::OutputSurfaceFrame frame) {
81 DCHECK(context_provider_); 85 DCHECK(context_provider_);
86
87 if (frame.latency_info.size() > 0)
88 in_process_command_buffer_->SetLatencyInfo(frame.latency_info);
mfomitchev 2017/03/23 15:11:16 This is why I am adding all this new plumbing in G
89
82 set_draw_rectangle_for_frame_ = false; 90 set_draw_rectangle_for_frame_ = false;
83 if (frame.sub_buffer_rect) { 91 if (frame.sub_buffer_rect) {
84 context_provider_->ContextSupport()->PartialSwapBuffers( 92 context_provider_->ContextSupport()->PartialSwapBuffers(
85 *frame.sub_buffer_rect); 93 *frame.sub_buffer_rect);
86 } else { 94 } else {
87 context_provider_->ContextSupport()->Swap(); 95 context_provider_->ContextSupport()->Swap(/*frame.latency_info*/);
88 } 96 }
89 } 97 }
90 98
91 uint32_t DisplayOutputSurface::GetFramebufferCopyTextureFormat() { 99 uint32_t DisplayOutputSurface::GetFramebufferCopyTextureFormat() {
92 // TODO(danakj): What attributes are used for the default framebuffer here? 100 // TODO(danakj): What attributes are used for the default framebuffer here?
93 // Can it have alpha? cc::InProcessContextProvider doesn't take any 101 // Can it have alpha? cc::InProcessContextProvider doesn't take any
94 // attributes. 102 // attributes.
95 return GL_RGB; 103 return GL_RGB;
96 } 104 }
97 105
(...skipping 21 matching lines...) Expand all
119 void DisplayOutputSurface::ApplyExternalStencil() {} 127 void DisplayOutputSurface::ApplyExternalStencil() {}
120 128
121 void DisplayOutputSurface::DidReceiveSwapBuffersAck(gfx::SwapResult result) { 129 void DisplayOutputSurface::DidReceiveSwapBuffersAck(gfx::SwapResult result) {
122 client_->DidReceiveSwapBuffersAck(); 130 client_->DidReceiveSwapBuffersAck();
123 } 131 }
124 132
125 void DisplayOutputSurface::OnGpuSwapBuffersCompleted( 133 void DisplayOutputSurface::OnGpuSwapBuffersCompleted(
126 const std::vector<ui::LatencyInfo>& latency_info, 134 const std::vector<ui::LatencyInfo>& latency_info,
127 gfx::SwapResult result, 135 gfx::SwapResult result,
128 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) { 136 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) {
137 for (const auto& lat_elt : latency_info) {
138 for (const auto& lc : lat_elt.latency_components()) {
139 // TODO: Make this check a method in LatencyTracker, also use it in RWHImp l?
140 if (lc.first.first == ui::INPUT_EVENT_LATENCY_BEGIN_RWH_COMPONENT ||
141 lc.first.first == ui::WINDOW_SNAPSHOT_FRAME_NUMBER_COMPONENT ||
142 lc.first.first == ui::TAB_SHOW_COMPONENT) {
143 // TODO(mfomitchev): Figure out how to pass the proper value for
144 // |is_running_navigation_hint_task|.
145 latency_tracker_->OnGpuSwapBufersCompleted(lat_elt, false);
146 }
147 }
148 }
129 DidReceiveSwapBuffersAck(result); 149 DidReceiveSwapBuffersAck(result);
130 } 150 }
131 151
132 void DisplayOutputSurface::OnVSyncParametersUpdated(base::TimeTicks timebase, 152 void DisplayOutputSurface::OnVSyncParametersUpdated(base::TimeTicks timebase,
133 base::TimeDelta interval) { 153 base::TimeDelta interval) {
134 // TODO(brianderson): We should not be receiving 0 intervals. 154 // TODO(brianderson): We should not be receiving 0 intervals.
135 synthetic_begin_frame_source_->OnUpdateVSyncParameters( 155 synthetic_begin_frame_source_->OnUpdateVSyncParameters(
136 timebase, 156 timebase,
137 interval.is_zero() ? cc::BeginFrameArgs::DefaultInterval() : interval); 157 interval.is_zero() ? cc::BeginFrameArgs::DefaultInterval() : interval);
138 } 158 }
139 159
140 } // namespace ui 160 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698