meson: sort protocols alphabetically

Signed-off-by: Xaver Hugl <xaver.hugl@kde.org>
This commit is contained in:
Xaver Hugl 2025-04-02 15:32:29 +02:00
parent 86750c99ed
commit 7636151e4a

View file

@ -16,11 +16,11 @@ dep_scanner = dependency('wayland-scanner',
prog_scanner = find_program(dep_scanner.get_variable(pkgconfig: 'wayland_scanner', internal: 'wayland_scanner'))
stable_protocols = {
'linux-dmabuf': ['v1'],
'presentation-time': [''],
'tablet': ['v2'],
'viewporter': [''],
'xdg-shell': [''],
'linux-dmabuf': ['v1'],
'tablet': ['v2'],
}
unstable_protocols = {
@ -45,6 +45,7 @@ unstable_protocols = {
}
staging_protocols = {
'alpha-modifier': ['v1'],
'color-management': ['v1'],
'commit-timing': ['v1'],
'content-type': ['v1'],
@ -57,6 +58,7 @@ staging_protocols = {
'ext-image-copy-capture': ['v1'],
'ext-session-lock': ['v1'],
'ext-transient-seat': ['v1'],
'ext-workspace': ['v1'],
'fifo': ['v1'],
'fractional-scale': ['v1'],
'linux-drm-syncobj': ['v1'],
@ -69,8 +71,6 @@ staging_protocols = {
'xdg-toplevel-drag': ['v1'],
'xdg-toplevel-icon': ['v1'],
'xwayland-shell': ['v1'],
'alpha-modifier': ['v1'],
'ext-workspace': ['v1'],
}
protocol_files = []