libliftoff/test/meson.build
Leo Li 4124ee8c7a Keep output layers ordered by allocation priority
To optimize for offloading success, the list of output layers can be
ordered by allocation priority, improving the chances of a higher
allocation score before the deadline.

The allocation algorithm picks DRM planes first, then tests output
layers against them. To reduce the number of tests, the layers can be
ordered such that it matches the DRM plane order. DRM planes in
libliftoff are ordered by primary, followed by all other planes in
descending z-order. We order the layers similarly, with the composition
layer first, followed by layers of descending priority.

In addition to layer priority, it's z-pos and intersection with other
layers are considered. Since to offload a high priority layer, all
intersection layers with higher z-pos will also need to be offloaded.

This also changes when reallocation is necessary. On top of the existing
criteria, reallocation is done when a layer's ordering changes.

With layer priority now considered, the priority test now passes --
enable it.
2023-12-20 16:03:49 +00:00

105 lines
2 KiB
Meson

drm_partial = drm.partial_dependency(compile_args: true, includes: true)
# This mock library will replace libdrm
mock_drm_lib = shared_library(
'drm',
files('libdrm_mock.c'),
dependencies: drm_partial,
soversion: drm.version().split('.')[0], # TODO: get it from the real dep
)
mock_liftoff = declare_dependency(
link_with: [mock_drm_lib, liftoff_lib],
include_directories: [liftoff_inc],
dependencies: drm_partial,
)
test('check_ndebug', executable('check_ndebug', 'check_ndebug.c'))
bench_exe = executable(
'bench',
files('bench.c'),
dependencies: mock_liftoff,
)
tests = {
'alloc': [
'basic',
'no-props-fail',
'zero-fb-id-fail',
'composition-no-props',
'empty',
'simple-1x',
'simple-1x-fail',
'simple-3x',
'zpos-2x-fail',
'zpos-3x',
'zpos-3x-intersect-fail',
'zpos-3x-intersect-partial',
'zpos-3x-disjoint-partial',
'zpos-3x-disjoint',
'zpos-4x-intersect-partial',
'zpos-4x-disjoint',
'zpos-4x-disjoint-alt',
'zpos-4x-domino-fail',
'zpos-4x-domino-partial',
'composition-3x',
'composition-3x-fail',
'composition-3x-partial',
'composition-3x-force',
'zpos-2x-reverse',
'zpos-3x-zero-fb-id',
'zpos-3x-zero-alpha',
],
'dynamic': [
'same',
'change-fb',
'change-fb-modifier',
'unset-fb',
'set-fb',
'add-layer',
'remove-layer',
'change-composition-layer',
'change-alpha',
'set-alpha-from-opaque',
'set-alpha-from-transparent',
'unset-alpha-to-opaque',
'unset-alpha-to-transparent',
'change-in-fence-fd',
'change-fb-damage-clips',
],
'priority': [
'basic',
],
'prop': [
'default-alpha',
'default-rotation',
'ignore-alpha',
'immutable-zpos',
'unmatched',
'unset',
'in-formats',
'range',
'signed-range',
'enum',
'bitmask',
],
'candidate': [
'basic',
],
}
foreach test_name, subtests : tests
test_exe = executable(
'test-' + test_name,
files('test_' + test_name + '.c'),
dependencies: mock_liftoff,
)
foreach subtest_name : subtests
test(
test_name + '@' + subtest_name,
test_exe,
args: [subtest_name],
)
endforeach
endforeach