hal/vulkan: fix invalid request of VK_EXT_physical_device_drm as an instance extension (#8554)

This commit is contained in:
Eric Engestrom 2025-11-26 23:52:14 +01:00 committed by GitHub
parent 43c5d27219
commit 803e48ca3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -271,8 +271,7 @@ impl super::Instance {
extensions.push(ext::acquire_drm_display::NAME); extensions.push(ext::acquire_drm_display::NAME);
extensions.push(ext::direct_mode_display::NAME); extensions.push(ext::direct_mode_display::NAME);
extensions.push(khr::display::NAME); extensions.push(khr::display::NAME);
// VK_EXT_physical_device_drm -> VK_KHR_get_physical_device_properties2 extensions.push(khr::get_physical_device_properties2::NAME);
extensions.push(ext::physical_device_drm::NAME);
extensions.push(khr::get_display_properties2::NAME); extensions.push(khr::get_display_properties2::NAME);
} }