Merge pull request #9573 from liamwhite/optional

vulkan_device: avoid attempt to access empty optional
pull/8/head
Narr the Reg 2 years ago committed by GitHub
commit cc92b7fd94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1520,9 +1520,13 @@ void Device::SetupFamilies(VkSurfaceKHR surface) {
LOG_ERROR(Render_Vulkan, "Device lacks a present queue");
throw vk::Exception(VK_ERROR_FEATURE_NOT_PRESENT);
}
if (graphics) {
graphics_family = *graphics;
}
if (present) {
present_family = *present;
}
}
void Device::SetupFeatures() {
const VkPhysicalDeviceFeatures features{physical.GetFeatures()};

Loading…
Cancel
Save