wlroots-hyprland/render/meson.build
Simon Ser b0a663d39d render: introduce wlr_swapchain
The swapchain maximum capacity is set to 4, so that we have enough room
for:

- A buffer currently displayed on screen
- A buffer queued for display (e.g. to KMS)
- A pending buffer that'll be queued next commit
- An additional pending buffer in case we want to invalidate the
  currently pending one
2020-11-15 22:48:42 +01:00

14 lines
241 B
Meson

wlr_files += files(
'allocator.c',
'dmabuf.c',
'egl.c',
'drm_format_set.c',
'gbm_allocator.c',
'gles2/pixel_format.c',
'gles2/renderer.c',
'gles2/shaders.c',
'gles2/texture.c',
'swapchain.c',
'wlr_renderer.c',
'wlr_texture.c',
)