mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 03:45:58 +01:00
4c5eadecce
Use the viewporter protocol to scale output layers.
30 lines
569 B
Meson
30 lines
569 B
Meson
wayland_client = dependency('wayland-client',
|
|
fallback: 'wayland',
|
|
default_options: wayland_project_options,
|
|
)
|
|
wlr_deps += wayland_client
|
|
|
|
wlr_files += files(
|
|
'backend.c',
|
|
'output.c',
|
|
'seat.c',
|
|
'pointer.c',
|
|
'tablet_v2.c',
|
|
)
|
|
|
|
client_protos = [
|
|
'drm',
|
|
'linux-dmabuf-unstable-v1',
|
|
'pointer-gestures-unstable-v1',
|
|
'presentation-time',
|
|
'relative-pointer-unstable-v1',
|
|
'tablet-unstable-v2',
|
|
'viewporter',
|
|
'xdg-activation-v1',
|
|
'xdg-decoration-unstable-v1',
|
|
'xdg-shell',
|
|
]
|
|
|
|
foreach proto : client_protos
|
|
wlr_files += protocols_client_header[proto]
|
|
endforeach
|