Alternating white and black stripes

This commit is contained in:
2025-05-04 20:24:39 -07:00
parent cbe54334ca
commit 0fc5d523bf
2 changed files with 10 additions and 7 deletions

View File

@@ -19,12 +19,12 @@ impl WlClient {
self.wl_compositor_create_surface()?;
self.layer_shell_get_layer_surface()?;
self.layer_surface_set_size(800, 800)?;
self.layer_surface_set_size(18, 5)?;
self.layer_surface_set_keyboard_interactivity()?;
self.wl_surface_commit()?;
self.wl_shm_create_pool(800, 800)?;
self.wl_shm_pool_create_buffer(0, 800, 800)?;
self.wl_shm_create_pool(18, 5)?;
self.wl_shm_pool_create_buffer(0, 18, 5)?;
Ok(())
}