diff options
| author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-05 18:31:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-05 18:31:45 -0500 |
| commit | 3e33a878dc9c2ee02c3e458281f714630e722a36 (patch) | |
| tree | de5eb22091f993428f0cab2354d690b98fffade5 /src/video_core/vulkan_common/vulkan_instance.h | |
| parent | 1428451722718d7af450f67d7ec823b155b128d2 (diff) | |
| parent | aa13ee5c4a8a2d7d87019e491e9f860fcf851d21 (diff) | |
Merge pull request #9536 from liamwhite/debug-utils
vulkan_common: unify VK_EXT_debug_utils and selection of validation layer
Diffstat (limited to 'src/video_core/vulkan_common/vulkan_instance.h')
| -rw-r--r-- | src/video_core/vulkan_common/vulkan_instance.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/vulkan_common/vulkan_instance.h b/src/video_core/vulkan_common/vulkan_instance.h index 40419d802..b59b92f83 100644 --- a/src/video_core/vulkan_common/vulkan_instance.h +++ b/src/video_core/vulkan_common/vulkan_instance.h @@ -17,8 +17,7 @@ namespace Vulkan { * @param dld Dispatch table to load function pointers into * @param required_version Required Vulkan version (for example, VK_API_VERSION_1_1) * @param window_type Window system type's enabled extension - * @param enable_debug_utils Whether to enable VK_EXT_debug_utils_extension_name or not - * @param enable_layers Whether to enable Vulkan validation layers or not + * @param enable_validation Whether to enable Vulkan validation layers or not * * @return A new Vulkan instance * @throw vk::Exception on failure @@ -26,6 +25,6 @@ namespace Vulkan { [[nodiscard]] vk::Instance CreateInstance( const Common::DynamicLibrary& library, vk::InstanceDispatch& dld, u32 required_version, Core::Frontend::WindowSystemType window_type = Core::Frontend::WindowSystemType::Headless, - bool enable_debug_utils = false, bool enable_layers = false); + bool enable_validation = false); } // namespace Vulkan |
