OLD | NEW |
---|---|
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 #ifndef SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ | 5 #ifndef SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ |
6 #define SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ | 6 #define SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "cc/output/in_process_context_provider.h" | 10 #include "cc/output/in_process_context_provider.h" |
11 #include "cc/output/output_surface.h" | 11 #include "cc/output/output_surface.h" |
12 | 12 |
13 namespace cc { | 13 namespace cc { |
14 class SyntheticBeginFrameSource; | 14 class SyntheticBeginFrameSource; |
15 } | 15 } |
16 | 16 |
17 namespace latency_tracker { | |
18 class LatencyTracker; | |
19 } | |
20 | |
17 namespace ui { | 21 namespace ui { |
18 | 22 |
19 // An OutputSurface implementation that directly draws and | 23 // An OutputSurface implementation that directly draws and |
20 // swaps to an actual GL surface. | 24 // swaps to an actual GL surface. |
21 class DisplayOutputSurface : public cc::OutputSurface { | 25 class DisplayOutputSurface : public cc::OutputSurface { |
22 public: | 26 public: |
23 DisplayOutputSurface( | 27 DisplayOutputSurface( |
24 scoped_refptr<cc::InProcessContextProvider> context_provider, | 28 scoped_refptr<cc::InProcessContextProvider> context_provider, |
25 cc::SyntheticBeginFrameSource* synthetic_begin_frame_source); | 29 cc::SyntheticBeginFrameSource* synthetic_begin_frame_source); |
26 ~DisplayOutputSurface() override; | 30 ~DisplayOutputSurface() override; |
(...skipping 18 matching lines...) Expand all Loading... | |
45 bool HasExternalStencilTest() const override; | 49 bool HasExternalStencilTest() const override; |
46 void ApplyExternalStencil() override; | 50 void ApplyExternalStencil() override; |
47 | 51 |
48 protected: | 52 protected: |
49 cc::OutputSurfaceClient* client() const { return client_; } | 53 cc::OutputSurfaceClient* client() const { return client_; } |
50 | 54 |
51 // Called when a swap completion is signaled from ImageTransportSurface. | 55 // Called when a swap completion is signaled from ImageTransportSurface. |
52 virtual void DidReceiveSwapBuffersAck(gfx::SwapResult result); | 56 virtual void DidReceiveSwapBuffersAck(gfx::SwapResult result); |
53 | 57 |
54 private: | 58 private: |
59 cc::InProcessContextProvider* in_process_context_provider() { | |
mfomitchev
2017/03/24 20:55:58
How about this?
| |
60 return static_cast<cc::InProcessContextProvider*>(context_provider()); | |
61 } | |
62 | |
55 // Called when a swap completion is signaled from ImageTransportSurface. | 63 // Called when a swap completion is signaled from ImageTransportSurface. |
56 void OnGpuSwapBuffersCompleted( | 64 void OnGpuSwapBuffersCompleted( |
57 const std::vector<ui::LatencyInfo>& latency_info, | 65 const std::vector<ui::LatencyInfo>& latency_info, |
58 gfx::SwapResult result, | 66 gfx::SwapResult result, |
59 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac); | 67 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac); |
60 void OnVSyncParametersUpdated(base::TimeTicks timebase, | 68 void OnVSyncParametersUpdated(base::TimeTicks timebase, |
61 base::TimeDelta interval); | 69 base::TimeDelta interval); |
62 | 70 |
63 cc::OutputSurfaceClient* client_ = nullptr; | 71 cc::OutputSurfaceClient* client_ = nullptr; |
64 cc::SyntheticBeginFrameSource* const synthetic_begin_frame_source_; | 72 cc::SyntheticBeginFrameSource* const synthetic_begin_frame_source_; |
73 std::unique_ptr<latency_tracker::LatencyTracker> latency_tracker_; | |
74 | |
65 bool set_draw_rectangle_for_frame_ = false; | 75 bool set_draw_rectangle_for_frame_ = false; |
66 // True if the draw rectangle has been set at all since the last resize. | 76 // True if the draw rectangle has been set at all since the last resize. |
67 bool has_set_draw_rectangle_since_last_resize_ = false; | 77 bool has_set_draw_rectangle_since_last_resize_ = false; |
68 gfx::Size size_; | 78 gfx::Size size_; |
69 | 79 |
70 base::WeakPtrFactory<DisplayOutputSurface> weak_ptr_factory_; | 80 base::WeakPtrFactory<DisplayOutputSurface> weak_ptr_factory_; |
71 }; | 81 }; |
72 | 82 |
73 } // namespace ui | 83 } // namespace ui |
74 | 84 |
75 #endif // SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ | 85 #endif // SERVICES_UI_SURFACES_DISPLAY_OUTPUT_SURFACE_H_ |
OLD | NEW |