| 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 "gpu/vulkan/vulkan_export.h" | 10 #include "gpu/vulkan/vulkan_export.h" |
| 11 namespace gpu { | 11 namespace gpu { |
| 12 | 12 |
| 13 class VulkanCommandPool; | |
| 14 | |
| 15 VULKAN_EXPORT bool InitializeVulkan(); | 13 VULKAN_EXPORT bool InitializeVulkan(); |
| 16 VULKAN_EXPORT bool VulkanSupported(); | 14 VULKAN_EXPORT bool VulkanSupported(); |
| 17 | 15 |
| 18 VkInstance GetVulkanInstance(); | 16 VkInstance GetVulkanInstance(); |
| 19 | 17 |
| 20 } // namespace gpu | 18 } // namespace gpu |
| 21 | 19 |
| 22 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_ | 20 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_ |
| OLD | NEW |