1
0
Fork 0
forked from wry/wry

surface: process offset request without a buffer change

This commit is contained in:
Julian Orth 2024-04-02 13:22:21 +02:00
parent adf6d2ae2b
commit 9cddeb964d
9 changed files with 98 additions and 11 deletions

View file

@ -45,6 +45,7 @@ mod t0016_scroll_ws;
mod t0017_remove_unused_ws;
mod t0018_click_to_active_ws;
mod t0019_natural_scrolling;
mod t0020_surface_offset;
pub trait TestCase: Sync {
fn name(&self) -> &'static str;
@ -62,6 +63,7 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
]
}
}
tests! {
t0001_shm_formats,
t0002_window,
@ -82,5 +84,6 @@ pub fn tests() -> Vec<&'static dyn TestCase> {
t0017_remove_unused_ws,
t0018_click_to_active_ws,
t0019_natural_scrolling,
t0020_surface_offset,
}
}