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