[client] wayland: require wl_compositor v3 instead of v4

The only addition to v4 was `wl_surface_damage_buffer`, which we do not
use.

This change should allow running on more compositors (even though v4 is
already old -- 5 years now).

Ref
3384f69ecf.
This commit is contained in:
Tudor Brindus
2021-02-26 21:58:30 -05:00
committed by Geoffrey McRae
parent d6b8823dce
commit 97009027d1
2 changed files with 3 additions and 3 deletions

View File

@@ -139,7 +139,7 @@ bool waylandWindowInit(const char * title, bool fullscreen, bool maximize, bool
if (!wlWm.compositor)
{
DEBUG_ERROR("Compositor missing wl_compositor (version 4+), will not proceed");
DEBUG_ERROR("Compositor missing wl_compositor (version 3+), will not proceed");
return false;
}