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