OLD | NEW |
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 GPU_VULKAN_VULKAN_IMPLEMENTATION_H_ | 5 #ifndef GPU_VULKAN_VULKAN_IMPLEMENTATION_H_ |
6 #define GPU_VULKAN_VULKAN_IMPLEMENTATION_H_ | 6 #define GPU_VULKAN_VULKAN_IMPLEMENTATION_H_ |
7 | 7 |
8 #include <vulkan/vulkan.h> | 8 #include <vulkan/vulkan.h> |
9 | 9 |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 | 11 |
12 namespace gpu { | 12 namespace gpu { |
13 | 13 |
14 class VulkanCommandPool; | 14 class VulkanCommandPool; |
15 | 15 |
16 bool InitializeVulkan(); | 16 bool InitializeVulkan(); |
17 | 17 |
18 VkInstance GetVulkanInstance(); | 18 VkInstance GetVulkanInstance(); |
19 VkPhysicalDevice GetVulkanPhysicalDevice(); | |
20 VkDevice GetVulkanDevice(); | |
21 VkQueue GetVulkanQueue(); | |
22 | |
23 scoped_ptr<VulkanCommandPool> CreateCommandPool(); | |
24 | 19 |
25 } // namespace gpu | 20 } // namespace gpu |
26 | 21 |
27 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_ | 22 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_ |
OLD | NEW |