1
0
Fork 0
forked from wry/wry

it: verify that surface damage damages connector

This commit is contained in:
Julian Orth 2025-09-03 12:45:05 +02:00
parent 8a5f1e1e37
commit f45cbed53b
4 changed files with 133 additions and 2 deletions

View file

@ -79,6 +79,7 @@ mod t0045_content_type;
mod t0046_buffer_release;
mod t0047_surface_damage;
mod t0048_frame_callback;
mod t0049_surface_damage_backend;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -146,5 +147,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0046_buffer_release,
t0047_surface_damage,
t0048_frame_callback,
t0049_surface_damage_backend,
}
}