1
0
Fork 0
forked from wry/wry

rect: safer construction

This commit is contained in:
Stipe Kotarac 2025-12-29 10:42:17 +01:00 committed by Julian Orth
parent 411af0ea18
commit a1dfc473a2
33 changed files with 245 additions and 159 deletions

View file

@ -83,6 +83,7 @@ mod t0049_surface_damage_backend;
mod t0050_fifo;
mod t0051_pointer_warp;
mod t0052_bar;
mod t0053_theme;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -154,5 +155,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0050_fifo,
t0051_pointer_warp,
t0052_bar,
t0053_theme,
}
}