mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2026-04-14 08:22:25 -04:00
This file is based on https://ozal.ski/bench.c which was previously use to provide benchmarks when we moved from the legacy rendering API to the current render pass architecture.
16 lines
308 B
Meson
16 lines
308 B
Meson
test(
|
|
'box',
|
|
executable('test-box', 'test_box.c', dependencies: wlroots),
|
|
)
|
|
|
|
benchmark(
|
|
'scene',
|
|
executable('bench-scene', 'bench_scene.c', dependencies: wlroots),
|
|
timeout: 30,
|
|
)
|
|
|
|
benchmark(
|
|
'render-pass',
|
|
executable('bench-render-pass', 'bench_render_pass.c', dependencies: wlroots),
|
|
timeout: 30,
|
|
)
|