mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-10-29 05:40:12 -04:00
udmabuf can create a DMA-BUF backed by a memfd. This is useful when running with a software implementation of GL/Vulkan: the memfd can be passed to the parent compositor via wl_shm and the DMA-BUF can be imported via the usual APIs into GL/Vulkan.
20 lines
404 B
C
20 lines
404 B
C
#ifndef WLR_CONFIG_H
|
|
#define WLR_CONFIG_H
|
|
|
|
#mesondefine WLR_HAS_DRM_BACKEND
|
|
#mesondefine WLR_HAS_LIBINPUT_BACKEND
|
|
#mesondefine WLR_HAS_X11_BACKEND
|
|
|
|
#mesondefine WLR_HAS_GLES2_RENDERER
|
|
#mesondefine WLR_HAS_VULKAN_RENDERER
|
|
|
|
#mesondefine WLR_HAS_GBM_ALLOCATOR
|
|
#mesondefine WLR_HAS_UDMABUF_ALLOCATOR
|
|
|
|
#mesondefine WLR_HAS_XWAYLAND
|
|
|
|
#mesondefine WLR_HAS_SESSION
|
|
|
|
#mesondefine WLR_HAS_COLOR_MANAGEMENT
|
|
|
|
#endif
|