1 //
2 // Copyright 2021 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 // libvulkan_loader.h:
7 //    Helper functions for the loading Vulkan libraries.
8 //
9 
10 #include <memory>
11 
12 #ifndef LIBANGLE_COMMON_VULKAN_LIBVULKAN_LOADER_H_
13 #    define LIBANGLE_COMMON_VULKAN_LIBVULKAN_LOADER_H_
14 
15 namespace angle
16 {
17 class Library;
18 
19 namespace vk
20 {
21 std::unique_ptr<Library> OpenLibVulkan();
22 }
23 }  // namespace angle
24 
25 #endif  // LIBANGLE_COMMON_VULKAN_LIBVULKAN_LOADER_H_
26