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

Side by Side Diff: gpu/vulkan/vulkan_implementation.h

Issue 1859703002: convert //gpu to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo part of clang-format 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 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 <memory>
no sievers 2016/04/05 19:02:42 unused
Mostyn Bramley-Moore 2016/04/05 21:35:33 Removed.
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 19
20 } // namespace gpu 20 } // namespace gpu
21 21
22 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_ 22 #endif // GPU_VULKAN_VULKAN_WSI_API_IMPLEMENTATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698