1
0
Fork 0
forked from wry/wry

it: add pointer warp test

This commit is contained in:
Julian Orth 2025-09-03 22:38:45 +02:00
parent 47a09af8f4
commit c51ec4456e
8 changed files with 136 additions and 3 deletions

View file

@ -81,6 +81,7 @@ mod t0047_surface_damage;
mod t0048_frame_callback;
mod t0049_surface_damage_backend;
mod t0050_fifo;
mod t0051_pointer_warp;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -150,5 +151,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0048_frame_callback,
t0049_surface_damage_backend,
t0050_fifo,
t0051_pointer_warp,
}
}