mutter/src/tests/mtk/meson.build
Bilal Elmoussaoui 7c98910488 mtk: Add a Region type
Currently, we use cairo_region_t despite it being a thing wrapper around pixman_region_32
In order to push for a cairo-less and wayland only build in the future, replace
cairo_region_t with a thin wrapper that is almost a copy of the upstream cairo implementation

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3292>
2023-11-03 11:27:52 +00:00

17 lines
238 B
Meson

test_cases += [
{
'name': 'mtk-rectangle',
'suite': 'unit',
'sources': [
'mtk/rectangle-tests.c',
],
},
{
'name': 'mtk-region',
'suite': 'unit',
'sources': [
'mtk/region-tests.c',
]
}
]