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

Side by Side Diff: content/browser/compositor/vulkan_browser_compositor_output_surface.h

Issue 2402173002: cc: Get rid of PostSwapBuffersComplete. (Closed)
Patch Set: postswap: fix-blimp-unittest-post-swap-acks Created 4 years, 2 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 (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 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 CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 5 #ifndef CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
6 #define CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_ 6 #define CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "content/browser/compositor/browser_compositor_output_surface.h" 11 #include "content/browser/compositor/browser_compositor_output_surface.h"
12 #include "ui/gfx/native_widget_types.h" 12 #include "ui/gfx/native_widget_types.h"
13 13
14 namespace gpu { 14 namespace gpu {
15 class VulkanSurface; 15 class VulkanSurface;
16 } 16 }
17 17
18 namespace content { 18 namespace content {
19 19
20 class VulkanBrowserCompositorOutputSurface 20 class VulkanBrowserCompositorOutputSurface
21 : public BrowserCompositorOutputSurface { 21 : public BrowserCompositorOutputSurface {
22 public: 22 public:
23 VulkanBrowserCompositorOutputSurface( 23 VulkanBrowserCompositorOutputSurface(
24 const scoped_refptr<cc::VulkanContextProvider>& context, 24 scoped_refptr<cc::VulkanContextProvider> context,
25 const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager, 25 scoped_refptr<ui::CompositorVSyncManager> vsync_manager,
26 cc::SyntheticBeginFrameSource* begin_frame_source); 26 cc::SyntheticBeginFrameSource* begin_frame_source);
27 27
28 ~VulkanBrowserCompositorOutputSurface() override; 28 ~VulkanBrowserCompositorOutputSurface() override;
29 29
30 bool Initialize(gfx::AcceleratedWidget widget); 30 bool Initialize(gfx::AcceleratedWidget widget);
31 void Destroy(); 31 void Destroy();
32 32
33 // BrowserCompositorOutputSurface implementation. 33 // BrowserCompositorOutputSurface implementation.
34 void OnGpuSwapBuffersCompleted( 34 void OnGpuSwapBuffersCompleted(
35 const std::vector<ui::LatencyInfo>& latency_info, 35 const std::vector<ui::LatencyInfo>& latency_info,
36 gfx::SwapResult result, 36 gfx::SwapResult result,
37 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override; 37 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override;
38 38
39 protected: 39 protected:
40 // cc::OutputSurface implementation. 40 // cc::OutputSurface implementation.
41 void SwapBuffers(cc::CompositorFrame* frame) override; 41 void SwapBuffers(cc::CompositorFrame* frame) override;
42 42
43 private: 43 private:
44 std::unique_ptr<gpu::VulkanSurface> surface_; 44 std::unique_ptr<gpu::VulkanSurface> surface_;
45 45
46 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface); 46 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface);
47 }; 47 };
48 48
49 } // namespace content 49 } // namespace content
50 50
51 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _ 51 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698