mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-12 08:21:33 -04:00
A small unit test of wlr_surface, currently testing surface and buffer damage with scaling, transform and viewport, including interaction with surface state locking.
23 lines
431 B
Meson
23 lines
431 B
Meson
wayland_client = dependency('wayland-client', kwargs: wayland_kwargs)
|
|
|
|
test(
|
|
'box',
|
|
executable('test-box', 'test_box.c', dependencies: wlroots),
|
|
)
|
|
|
|
test(
|
|
'surface',
|
|
executable('test-surface',
|
|
[
|
|
'test_surface.c',
|
|
'../util/shm.c',
|
|
protocols_code['viewporter'],
|
|
],
|
|
dependencies: [wlroots, wayland_client]),
|
|
)
|
|
|
|
benchmark(
|
|
'scene',
|
|
executable('bench-scene', 'bench_scene.c', dependencies: wlroots),
|
|
timeout: 30,
|
|
)
|