xref: /aosp_15_r20/external/angle/src/common/vulkan/libvulkan_loader.h (revision 8975f5c5ed3d1c378011245431ada316dfb6f244)
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 namespace vk
18 {
19 void *OpenLibVulkan();
20 }
21 }  // namespace angle
22 
23 #endif  // LIBANGLE_COMMON_VULKAN_LIBVULKAN_LOADER_H_
24