mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-22 07:24:34 +00:00
Assert that set_required_features sTypes are set
This allows the set_required_features_11/12/13 to take a reference instead of a value. Applications should set the sType, vk-bootstrap shouldn't be doing that for apps.
This commit is contained in:
parent
e186301249
commit
a78a7f38da
@ -1341,20 +1341,20 @@ PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features(VkPhysical
|
|||||||
}
|
}
|
||||||
#if defined(VKB_VK_API_VERSION_1_2)
|
#if defined(VKB_VK_API_VERSION_1_2)
|
||||||
// Just calls add_required_features
|
// Just calls add_required_features
|
||||||
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_11(VkPhysicalDeviceVulkan11Features features_11) {
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_11(VkPhysicalDeviceVulkan11Features const& features_11) {
|
||||||
features_11.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES;
|
assert(features_11.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES);
|
||||||
add_required_extension_features(features_11);
|
add_required_extension_features(features_11);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_12(VkPhysicalDeviceVulkan12Features features_12) {
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_12(VkPhysicalDeviceVulkan12Features const& features_12) {
|
||||||
features_12.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES;
|
assert(features_12.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES);
|
||||||
add_required_extension_features(features_12);
|
add_required_extension_features(features_12);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if defined(VKB_VK_API_VERSION_1_3)
|
#if defined(VKB_VK_API_VERSION_1_3)
|
||||||
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_13(VkPhysicalDeviceVulkan13Features features_13) {
|
PhysicalDeviceSelector& PhysicalDeviceSelector::set_required_features_13(VkPhysicalDeviceVulkan13Features const& features_13) {
|
||||||
features_13.sType = VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_FEATURES;
|
assert(features_13.sType == VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_3_FEATURES);
|
||||||
add_required_extension_features(features_13);
|
add_required_extension_features(features_13);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
@ -629,15 +629,15 @@ class PhysicalDeviceSelector {
|
|||||||
#if defined(VKB_VK_API_VERSION_1_2)
|
#if defined(VKB_VK_API_VERSION_1_2)
|
||||||
// Require a physical device which supports the features in VkPhysicalDeviceVulkan11Features.
|
// Require a physical device which supports the features in VkPhysicalDeviceVulkan11Features.
|
||||||
// Must have vulkan version 1.2 - This is due to the VkPhysicalDeviceVulkan11Features struct being added in 1.2, not 1.1
|
// Must have vulkan version 1.2 - This is due to the VkPhysicalDeviceVulkan11Features struct being added in 1.2, not 1.1
|
||||||
PhysicalDeviceSelector& set_required_features_11(VkPhysicalDeviceVulkan11Features features_11);
|
PhysicalDeviceSelector& set_required_features_11(VkPhysicalDeviceVulkan11Features const& features_11);
|
||||||
// Require a physical device which supports the features in VkPhysicalDeviceVulkan12Features.
|
// Require a physical device which supports the features in VkPhysicalDeviceVulkan12Features.
|
||||||
// Must have vulkan version 1.2
|
// Must have vulkan version 1.2
|
||||||
PhysicalDeviceSelector& set_required_features_12(VkPhysicalDeviceVulkan12Features features_12);
|
PhysicalDeviceSelector& set_required_features_12(VkPhysicalDeviceVulkan12Features const& features_12);
|
||||||
#endif
|
#endif
|
||||||
#if defined(VKB_VK_API_VERSION_1_3)
|
#if defined(VKB_VK_API_VERSION_1_3)
|
||||||
// Require a physical device which supports the features in VkPhysicalDeviceVulkan13Features.
|
// Require a physical device which supports the features in VkPhysicalDeviceVulkan13Features.
|
||||||
// Must have vulkan version 1.3
|
// Must have vulkan version 1.3
|
||||||
PhysicalDeviceSelector& set_required_features_13(VkPhysicalDeviceVulkan13Features features_13);
|
PhysicalDeviceSelector& set_required_features_13(VkPhysicalDeviceVulkan13Features const& features_13);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Used when surface creation happens after physical device selection.
|
// Used when surface creation happens after physical device selection.
|
||||||
|
Loading…
Reference in New Issue
Block a user