diff options
| author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2021-01-03 17:38:29 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-03 17:38:29 -0300 |
| commit | 7265e80c12de2d24d759ee6956a2445bf9ac8992 (patch) | |
| tree | 3236d949fdf894b985a8dcafc580cd233ebd9a68 /src/video_core/vulkan_common/vulkan_library.h | |
| parent | 71e18dddbe14464160ac2d90e42d8b41da3d2e21 (diff) | |
| parent | cdbee27692d73046cecf56fdea1c90f72ebbc0ce (diff) | |
Merge pull request #5230 from ReinUsesLisp/vulkan-common
vulkan_common: Move reusable Vulkan abstractions to a separate directory
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_library.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_library.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/video_core/vulkan_common/vulkan_library.h b/src/video_core/vulkan_common/vulkan_library.h new file mode 100644 index 000000000..8b28b0e17 --- /dev/null +++ b/src/video_core/vulkan_common/vulkan_library.h @@ -0,0 +1,13 @@ +// Copyright 2020 yuzu Emulator Project +// Licensed under GPLv2 or any later version +// Refer to the license.txt file included. + +#pragma once + +#include "common/dynamic_library.h" + +namespace Vulkan { + +Common::DynamicLibrary OpenLibrary(); + +} // namespace Vulkan |
