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

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

Issue 2472433002: Fixed compile- and link-time errors with the "enable_vulkan" GN-argument (Closed)
Patch Set: Augmented the AUTHORS file per reviewers request. Created 4 years, 1 month 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 "base/memory/weak_ptr.h"
12 #include "cc/output/output_surface_frame.h"
11 #include "content/browser/compositor/browser_compositor_output_surface.h" 13 #include "content/browser/compositor/browser_compositor_output_surface.h"
12 #include "ui/gfx/native_widget_types.h" 14 #include "ui/gfx/native_widget_types.h"
13 15
14 namespace gpu { 16 namespace gpu {
15 class VulkanSurface; 17 class VulkanSurface;
16 } 18 }
17 19
18 namespace content { 20 namespace content {
19 21
20 class VulkanBrowserCompositorOutputSurface 22 class VulkanBrowserCompositorOutputSurface
21 : public BrowserCompositorOutputSurface { 23 : public BrowserCompositorOutputSurface {
22 public: 24 public:
23 VulkanBrowserCompositorOutputSurface( 25 VulkanBrowserCompositorOutputSurface(
24 scoped_refptr<cc::VulkanContextProvider> context, 26 scoped_refptr<cc::VulkanContextProvider> context,
25 scoped_refptr<ui::CompositorVSyncManager> vsync_manager, 27 scoped_refptr<ui::CompositorVSyncManager> vsync_manager,
26 cc::SyntheticBeginFrameSource* begin_frame_source); 28 cc::SyntheticBeginFrameSource* begin_frame_source);
27 29
28 ~VulkanBrowserCompositorOutputSurface() override; 30 ~VulkanBrowserCompositorOutputSurface() override;
29 31
30 bool Initialize(gfx::AcceleratedWidget widget); 32 bool Initialize(gfx::AcceleratedWidget widget);
31 void Destroy(); 33 void Destroy();
32 34
33 // BrowserCompositorOutputSurface implementation.
34 void OnGpuSwapBuffersCompleted(
35 const std::vector<ui::LatencyInfo>& latency_info,
36 gfx::SwapResult result,
37 const gpu::GpuProcessHostedCALayerTreeParamsMac* params_mac) override;
38
39 protected:
40 // cc::OutputSurface implementation. 35 // cc::OutputSurface implementation.
41 void SwapBuffers(cc::CompositorFrame* frame) override; 36 void BindToClient(cc::OutputSurfaceClient* client) override;
37 void EnsureBackbuffer() override;
38 void DiscardBackbuffer() override;
39 void BindFramebuffer() override;
40 bool IsDisplayedAsOverlayPlane() const override;
41 unsigned GetOverlayTextureId() const override;
42 bool SurfaceIsSuspendForRecycle() const override;
43 void Reshape(const gfx::Size& size,
44 float device_scale_factor,
45 const gfx::ColorSpace& color_space,
46 bool has_alpha) override;
47 uint32_t GetFramebufferCopyTextureFormat() override;
48 void SwapBuffers(cc::OutputSurfaceFrame frame) override;
42 49
43 private: 50 private:
51 void SwapBuffersAck();
52
44 std::unique_ptr<gpu::VulkanSurface> surface_; 53 std::unique_ptr<gpu::VulkanSurface> surface_;
54 cc::OutputSurfaceClient* client_ = nullptr;
55 base::WeakPtrFactory<VulkanBrowserCompositorOutputSurface> weak_ptr_factory_;
45 56
46 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface); 57 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface);
47 }; 58 };
48 59
49 } // namespace content 60 } // namespace content
50 61
51 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _ 62 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698