mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 04:20:08 +01:00
panvk: Enable VK_EXT_direct_mode_display
Panvk already enables VK_EXT_acquire_xlib_display, but not VK_EXT_direct_mode_display which is a dependency. This causes a failure in dEQP-VK.info.instance_extensions. Fixes:8c2bfa279d("panvk: support x11 wsi") Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> Acked-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34672> (cherry picked from commit8dd578e2a4)
This commit is contained in:
parent
727777ad84
commit
bca113e890
3 changed files with 5 additions and 2 deletions
|
|
@ -454,7 +454,7 @@
|
|||
"description": "panvk: Enable VK_EXT_direct_mode_display",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "8c2bfa279d33cf54eda230650fde4e358354d703",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -597,7 +597,7 @@ Khronos extensions that are not part of any Vulkan version:
|
|||
VK_EXT_device_fault DONE (radv)
|
||||
VK_EXT_device_generated_commands DONE (nvk/Turing+, radv/gfx8+)
|
||||
VK_EXT_device_memory_report DONE (vn)
|
||||
VK_EXT_direct_mode_display DONE (anv, lvp, nvk, radv, tu, v3dv)
|
||||
VK_EXT_direct_mode_display DONE (anv, lvp, nvk, panvk, radv, tu, v3dv)
|
||||
VK_EXT_discard_rectangles DONE (radv)
|
||||
VK_EXT_display_control DONE (anv, hasvk, nvk, radv, tu)
|
||||
VK_EXT_display_surface_counter DONE (anv, lvp, nvk, radv, tu)
|
||||
|
|
|
|||
|
|
@ -62,6 +62,9 @@ static const struct vk_instance_extension_table panvk_instance_extensions = {
|
|||
#ifdef PANVK_USE_WSI_PLATFORM
|
||||
.KHR_surface = true,
|
||||
#endif
|
||||
#ifdef VK_USE_PLATFORM_DISPLAY_KHR
|
||||
.EXT_direct_mode_display = true,
|
||||
#endif
|
||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||
.KHR_wayland_surface = true,
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue