You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vulkan: Expand cases where can_get_driver_info is true
VK_KHR_driver_properties requires VK_KHR_get_physical_device_properties2
extension. For Vulkan 1.2 both extensions are core, so nothing to do,
for Vulkan 1.1, the latter is core, so only need the former. For Vulkan
1.0 both extensions are required.
This fixes `vulkan_driver` option in applications that ask for
Vulkan 1.0 (e.g. vkcube) but that the driver does support the extra
extensions.
Commit 8450291 ("vulkan: Do not modify pCreateInfo in CreateDevice")
previously removed this, however Vulkan spec requires those to be
enabled -- even if sometimes drivers work fine with just using extensions
without enabling. Vulkan Validation layers use this same approach of
modifying the CreateInfo structure to ask for extra extensions.
0 commit comments