comp: Enable VK_EXT_debug_report extension

This commit is contained in:
Ryan Pavlik 2021-03-30 15:01:21 -05:00
parent 061ae2f7b7
commit 942091c10d
2 changed files with 5 additions and 2 deletions

View file

@ -43,6 +43,8 @@ minimize frustration.
| [`VK_KHR_external_semaphore`][] (8) (+platform: 7) | yes (soon) |||||||
| [`VK_KHR_swapchain`][] | | yes ||||||
[`VK_EXT_debug_report`][] is also used.
## Notes
Kept out of the table above to limit its width.
@ -85,6 +87,7 @@ Kept out of the table above to limit its width.
[`VK_KHR_display`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_KHR_display.html
[`VK_KHR_xcb_surface`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_KHR_xcb_surface.html
[`VK_KHR_wayland_surface`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_KHR_wayland_surface.html
[`VK_EXT_debug_report`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_EXT_debug_report.html
[`VK_EXT_direct_mode_display`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_EXT_direct_mode_display.html
[`VK_EXT_acquire_xlib_display`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_EXT_acquire_xlib_display.html
[`VK_KHR_android_surface`]: https://khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VK_KHR_android_surface.html

View file

@ -661,8 +661,8 @@ find_get_instance_proc_addr(struct comp_compositor *c)
// in `vulkan-extensions.md`
#define COMP_INSTANCE_EXTENSIONS_COMMON \
VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME, VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME, \
VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME, \
VK_EXT_DEBUG_REPORT_EXTENSION_NAME, VK_KHR_EXTERNAL_FENCE_CAPABILITIES_EXTENSION_NAME, \
VK_KHR_EXTERNAL_MEMORY_CAPABILITIES_EXTENSION_NAME, VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME, \
VK_KHR_GET_PHYSICAL_DEVICE_PROPERTIES_2_EXTENSION_NAME, VK_KHR_SURFACE_EXTENSION_NAME
static const char *instance_extensions_none[] = {COMP_INSTANCE_EXTENSIONS_COMMON};