| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ |
| 6 #define CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ |
| 7 |
| 8 #include "content/browser/compositor/gpu_surfaceless_browser_compositor_output_s
urface.h" |
| 9 |
| 10 namespace content { |
| 11 |
| 12 class GpuOutputSurfaceMac |
| 13 : public GpuSurfacelessBrowserCompositorOutputSurface { |
| 14 public: |
| 15 GpuOutputSurfaceMac( |
| 16 scoped_refptr<ContextProviderCommandBuffer> context, |
| 17 gpu::SurfaceHandle surface_handle, |
| 18 scoped_refptr<ui::CompositorVSyncManager> vsync_manager, |
| 19 base::SingleThreadTaskRunner* task_runner, |
| 20 std::unique_ptr<display_compositor::CompositorOverlayCandidateValidator> |
| 21 overlay_candidate_validator, |
| 22 gpu::GpuMemoryBufferManager* gpu_memory_buffer_manager); |
| 23 ~GpuOutputSurfaceMac() override; |
| 24 |
| 25 // cc::OutputSurface implementation. |
| 26 void SwapBuffers(cc::CompositorFrame* frame) override; |
| 27 bool SurfaceIsSuspendForRecycle() const override; |
| 28 |
| 29 // BrowserCompositorOutputSurface implementation. |
| 30 void OnGpuSwapBuffersCompleted( |
| 31 const std::vector<ui::LatencyInfo>& latency_info, |
| 32 gfx::SwapResult result, |
| 33 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override; |
| 34 void SetSurfaceSuspendedForRecycle(bool suspended) override; |
| 35 |
| 36 private: |
| 37 enum ShouldShowFramesState { |
| 38 // Frames that come from the GPU process should appear on-screen. |
| 39 SHOULD_SHOW_FRAMES, |
| 40 // The compositor has been suspended. Any frames that come from the GPU |
| 41 // process are for the pre-suspend content and should not be displayed. |
| 42 SHOULD_NOT_SHOW_FRAMES_SUSPENDED, |
| 43 // The compositor has been un-suspended, but has not yet issued a swap |
| 44 // since being un-suspended, so any frames that come from the GPU process |
| 45 // are for pre-suspend content and should not be displayed. |
| 46 SHOULD_NOT_SHOW_FRAMES_NO_SWAP_AFTER_SUSPENDED, |
| 47 }; |
| 48 ShouldShowFramesState should_show_frames_state_ = SHOULD_SHOW_FRAMES; |
| 49 |
| 50 DISALLOW_COPY_AND_ASSIGN(GpuOutputSurfaceMac); |
| 51 }; |
| 52 |
| 53 } // namespace content |
| 54 |
| 55 #endif // CONTENT_BROWSER_COMPOSITOR_GPU_OUTPUT_SURFACE_MAC_H_ |
| OLD | NEW |