bfa9646d1d
A new backend which doesn't present the rendered output. It uses a QPainter scene, renders to a QImage but doesn't present it anywhere. Thus a real virtual backend. By exporting the environment variable KWIN_WAYLAND_VIRTUAL_SCREENSHOTS the backend creates a temporary dir, prints the path to std-out and saves each rendered frame into that directory. Of course with exit it will be deleted again.
12 lines
235 B
CMake
12 lines
235 B
CMake
if(HAVE_DRM)
|
|
add_subdirectory(drm)
|
|
endif()
|
|
add_subdirectory(fbdev)
|
|
if(HAVE_LIBHYBRIS)
|
|
add_subdirectory(hwcomposer)
|
|
endif()
|
|
add_subdirectory(virtual)
|
|
add_subdirectory(wayland)
|
|
if(X11_XCB_FOUND)
|
|
add_subdirectory(x11)
|
|
endif()
|