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

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

Issue 1903523004: The display can now create a Vulkan Renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@vulkan_context_surface
Patch Set: Export VulkanRenderer Created 4 years, 8 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 const scoped_refptr<cc::VulkanContextProvider>& context,
25 const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager); 25 const scoped_refptr<ui::CompositorVSyncManager>& vsync_manager,
26 base::SingleThreadTaskRunner* task_runner);
26 27
27 ~VulkanBrowserCompositorOutputSurface() override; 28 ~VulkanBrowserCompositorOutputSurface() override;
28 29
29 bool Initialize(gfx::AcceleratedWidget widget); 30 bool Initialize(gfx::AcceleratedWidget widget);
30 void Destroy(); 31 void Destroy();
31 32
32 // BrowserCompositorOutputSurface implementation. 33 // BrowserCompositorOutputSurface implementation.
33 void OnGpuSwapBuffersCompleted( 34 void OnGpuSwapBuffersCompleted(
34 const std::vector<ui::LatencyInfo>& latency_info, 35 const std::vector<ui::LatencyInfo>& latency_info,
35 gfx::SwapResult result) override; 36 gfx::SwapResult result) override;
36 37
37 protected: 38 protected:
38 // cc::OutputSurface implementation. 39 // cc::OutputSurface implementation.
39 void SwapBuffers(cc::CompositorFrame* frame) override; 40 void SwapBuffers(cc::CompositorFrame* frame) override;
40 41
41 private: 42 private:
42 std::unique_ptr<gpu::VulkanSurface> surface_; 43 std::unique_ptr<gpu::VulkanSurface> surface_;
43 44
44 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface); 45 DISALLOW_COPY_AND_ASSIGN(VulkanBrowserCompositorOutputSurface);
45 }; 46 };
46 47
47 } // namespace content 48 } // namespace content
48 49
49 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _ 50 #endif // CONTENT_BROWSER_COMPOSITOR_VULKAN_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698