bevy icon indicating copy to clipboard operation
bevy copied to clipboard

Running with wayland enabled under sway results in ERROR_SURFACE_LOST_KHR

Open colinmarc opened this issue 2 years ago • 3 comments

Bevy version: 0.21.5

I wrote a very simple app that moves a blue box around the screen. Source below. I've successfully run the app on my mac laptop.

Running on my arch/sway dev machine with features = ["wayland"] results in the following error:

2023-11-30T13:14:59.537409Z  INFO bevy_render::renderer: AdapterInfo { name: "AMD Radeon RX 6650 XT (RADV NAVI23)", vendor: 4098, device: 29679, device_type: DiscreteGpu, driver: "radv", driver_info: "Mesa 23.1.9-manjaro1.1", backend: Vulkan }
2023-11-30T13:14:59.842066Z  INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Linux 23.1.0 Manjaro Linux", kernel: "6.1.63-1-MANJARO", cpu: "AMD Ryzen 7 5800X 8-Core Processor", core_count: "8", memory: "31.3 GiB" }
2023-11-30T13:15:00.004048Z ERROR wgpu_hal::vulkan::adapter: get_physical_device_surface_formats: ERROR_SURFACE_LOST_KHR    
thread 'main' panicked at /home/colinmarc/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-0.17.2/src/backend/direct.rs:771:18:
Error in Surface::configure: Validation Error

Caused by:
    Requested format Bgra8UnormSrgb is not in list of supported formats: []

I've tested wgpu examples and they work fine.

Source

use bevy::{prelude::*, window::WindowResolution};

const SIZE: f32 = 32.0;

#[derive(Component)]
struct Box(u8);

fn main() {
    App::new()
        .add_plugins(DefaultPlugins.set(WindowPlugin {
            primary_window: Some(Window {
                title: "Latency Test".to_string(),
           //     resolution: WindowResolution::new(SIZE * 8.0, SIZE * 8.0),
                ..Default::default()
            }),
            ..Default::default()
        }))
        .insert_resource(ClearColor(Color::BLACK))
        .add_systems(Startup, setup)
        .add_systems(Update, (update_on_keypress, bevy::window::close_on_esc))
        .run();
}

fn setup(mut commands: Commands) {
    commands.spawn(Camera2dBundle::default());
    commands.spawn((
        SpriteBundle {
            sprite: Sprite {
                color: Color::BLUE,
                custom_size: Some(Vec2::new(SIZE, SIZE)),
                anchor: bevy::sprite::Anchor::TopLeft,
                ..default()
            },
            transform: Transform::from_translation(Vec3::new(SIZE * -4.0, SIZE * 4.0, 0.0)),
            ..default()
        },
        Box(0),
    ));
}

fn update_on_keypress(
    keyboard_input: Res<Input<KeyCode>>,
    mut query: Query<(&mut Box, &mut Transform)>,
) {
    if keyboard_input.just_pressed(KeyCode::Space) {
        for (mut b, mut transform) in &mut query {
            b.0 = (b.0 + 1) % 64;
            let y = b.0 / 8;
            let x = b.0 % 8;

            transform.translation.x = SIZE * (-4.0 + x as f32);
            transform.translation.y = SIZE * (4.0 - y as f32);
        }
    }
}

colinmarc avatar Nov 30 '23 13:11 colinmarc

I'm running the wgpu examples with eg:

RUST_LOG=info WINIT_UNIX_BACKEND=wayland WGPU_BACKEND=gl cargo run --bin wgpu-examples hello_triangle

Which results in:

2023-11-30T13:20:36Z INFO  wgpu_hal::vulkan::instance] Debug utils not enabled: debug_utils_user_data not passed to Instance::from_raw
[2023-11-30T13:20:36Z INFO  wgpu_hal::gles::egl] Using Wayland platform
[2023-11-30T13:20:36Z INFO  wgpu_core::instance] Adapter Vulkan AdapterInfo { name: "AMD Radeon RX 6650 XT (RADV NAVI23)", vendor: 4098, device: 29679, device_type: DiscreteGpu, driver: "radv", driver_info: "Mesa 23.1.9-manjaro1.1", backend: Vulkan }

colinmarc avatar Nov 30 '23 13:11 colinmarc

Here's with WAYLAND_DEBUG=1

[2365324.158]  -> [email protected]_registry(new id wl_registry@2)
[2365324.173]  -> [email protected](new id wl_callback@3)
[2365324.216] [email protected]_id(3)
[2365324.220] [email protected](1, "wl_shm", 1)
[2365324.242]  -> [email protected](1, "wl_shm", 1, new id [unknown]@4)
[2365324.252] [email protected](2, "wl_drm", 2)
[2365324.255] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365324.257] [email protected](4, "wl_compositor", 5)
[2365324.267]  -> [email protected](4, "wl_compositor", 5, new id [unknown]@5)
[2365324.272] [email protected](5, "wl_subcompositor", 1)
[2365324.277]  -> [email protected](5, "wl_subcompositor", 1, new id [unknown]@6)
[2365324.280] [email protected](6, "wl_data_device_manager", 3)
[2365324.283] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365324.285] [email protected](8, "zxdg_output_manager_v1", 3)
[2365324.287] [email protected](9, "org_kde_kwin_idle", 1)
[2365324.290] [email protected](10, "ext_idle_notifier_v1", 1)
[2365324.292] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365324.294] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365324.297] [email protected](13, "xdg_wm_base", 2)
[2365324.300] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365324.302] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365324.305] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365324.311]  -> [email protected](16, "zxdg_decoration_manager_v1", 1, new id [unknown]@7)
[2365324.315] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365324.321]  -> [email protected](17, "zwp_relative_pointer_manager_v1", 1, new id [unknown]@8)
[2365324.325] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365324.330]  -> [email protected](18, "zwp_pointer_constraints_v1", 1, new id [unknown]@9)
[2365324.333] [email protected](19, "wp_presentation", 1)
[2365324.336] [email protected](20, "zwlr_output_manager_v1", 4)
[2365324.338] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365324.340] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365324.342] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365324.345]  -> [email protected](23, "zwp_text_input_manager_v3", 1, new id [unknown]@10)
[2365324.349] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365324.351] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365324.353] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365324.356] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365324.358] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365324.360] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365324.362] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365324.365] [email protected](31, "wp_viewporter", 1)
[2365324.368]  -> [email protected](31, "wp_viewporter", 1, new id [unknown]@11)
[2365324.371] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365324.374] [email protected](33, "zxdg_exporter_v1", 1)
[2365324.376] [email protected](34, "zxdg_importer_v1", 1)
[2365324.378] [email protected](35, "zxdg_exporter_v2", 1)
[2365324.380] [email protected](36, "zxdg_importer_v2", 1)
[2365324.383] [email protected](37, "xdg_activation_v1", 1)
[2365324.386]  -> [email protected](37, "xdg_activation_v1", 1, new id [unknown]@12)
[2365324.389] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365324.391] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365324.394] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365324.396] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365324.398] [email protected](42, "wl_seat", 8)
[2365324.402]  -> [email protected](42, "wl_seat", 6, new id [unknown]@13)
[2365324.410] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365324.412] [email protected](44, "wl_output", 4)
[2365324.416]  -> [email protected](44, "wl_output", 4, new id [unknown]@14)
[2365324.423] [email protected](9707)
[2365324.426]  -> [email protected](new id wl_callback@3)
[2365324.464] [email protected]_id(3)
[2365324.466] [email protected](0)
[2365324.473] [email protected](1)
[2365324.475] [email protected](875709016)
[2365324.476] [email protected](875708993)
[2365324.478] [email protected](875710274)
[2365324.480] [email protected](842094674)
[2365324.482] [email protected](842088786)
[2365324.483] [email protected](892426322)
[2365324.485] [email protected](892420434)
[2365324.487] [email protected](909199186)
[2365324.489] [email protected](808665688)
[2365324.490] [email protected](808665665)
[2365324.492] [email protected](1211384408)
[2365324.494] [email protected](1211384385)
[2365324.495] [email protected](942948952)
[2365324.497] [email protected](942948929)
[2365324.499] [email protected]("seat0")
[2365324.506] [email protected](3)
[2365324.509] [email protected](0, 0, 600, 340, 0, "Dell Inc.", "DELL U2723QE", 0)
[2365324.515] [email protected](1, 3840, 2160, 59997)
[2365324.518] [email protected](2)
[2365324.520] [email protected]("DP-1")
[2365324.523] [email protected]("Dell Inc. DELL U2723QE 9R925H3 (DP-1)")
[2365324.525] [email protected]()
[2365324.531] [email protected](9707)
[2365324.585]  -> [email protected]_surface(new id wl_surface@3)
[2365324.592]  -> [email protected]_pointer(new id wl_pointer@15)
[2365324.606]  -> [email protected]_relative_pointer(new id zwp_relative_pointer_v1@16, wl_pointer@15)
[2365324.614]  -> [email protected]_keyboard(new id wl_keyboard@17)
[2365326.156]  -> [email protected]_text_input(new id zwp_text_input_v3@18, wl_seat@13)
2023-11-30T13:23:00.421561Z  INFO bevy_winit::system: Creating new window "Latency Test" (0v0)
[2365326.301]  -> [email protected]_surface(new id wl_surface@19)
[2365326.315]  -> [email protected](13, "xdg_wm_base", 2, new id [unknown]@20)
[2365326.338]  -> [email protected]_pool(new id wl_shm_pool@21, fd 9, 4096)
2023-11-30T13:23:00.423412Z ERROR sctk_adwaita::config: XDG Settings Portal did not return response in time: timeout: 100ms, key: color-scheme    
[2365334.422]  -> [email protected]_xdg_surface(new id xdg_surface@22, wl_surface@19)
[2365334.435]  -> [email protected]_toplevel(new id xdg_toplevel@23)
[2365334.441]  -> [email protected]()
[2365334.446]  -> [email protected]_min_size(2, 1)
[2365334.450]  -> [email protected]_window_geometry(0, 0, 1280, 720)
[2365334.460]  -> [email protected]_surface(new id wl_surface@24)
[2365334.465]  -> [email protected]_pointer(new id wl_pointer@25)
[2365334.480]  -> [email protected]_toplevel_decoration(new id zxdg_toplevel_decoration_v1@26, xdg_toplevel@23)
[2365334.490]  -> [email protected]_mode()
[2365334.493]  -> [email protected]_min_size(180, 120)
[2365334.496]  -> [email protected]_max_size(0, 0)
[2365334.499]  -> [email protected]_min_size(180, 120)
[2365334.502]  -> [email protected]_max_size(0, 0)
[2365334.976]  -> [email protected]_title("Latency Test")
[2365334.983]  -> [email protected]()
[2365334.991]  -> [email protected]_region(new id wl_region@27)
[2365334.996]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365335.000]  -> [email protected]_opaque_region(wl_region@27)
[2365335.002]  -> [email protected]()
[2365335.015]  -> [email protected](new id wl_callback@28)
[2365335.090] [email protected]_id(27)
[2365335.093] [email protected]_id(28)
[2365335.094] [email protected](1, fd 9, 65051)
[2365336.100] [email protected]_info(25, 600)
[2365336.105] [email protected](9709)
[2365336.110]  -> [email protected](9709)
[2365336.113] [email protected](9709)
[2365336.115] [email protected](0, 0, array[0])
[2365336.123] [email protected](2)
[2365336.129] [email protected](9708)
[2365336.132]  -> [email protected]_configure(9708)
[2365350.684]  -> [email protected]_registry(new id wl_registry@2)
[2365350.690]  -> [email protected](new id wl_callback@3)
[2365350.730] [email protected]_id(3)
[2365350.733] [email protected](1, "wl_shm", 1)
[2365350.735] [email protected](2, "wl_drm", 2)
[2365350.738] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365350.740]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@4)
[2365350.742] [email protected](4, "wl_compositor", 5)
[2365350.744] [email protected](5, "wl_subcompositor", 1)
[2365350.746] [email protected](6, "wl_data_device_manager", 3)
[2365350.748] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365350.750] [email protected](8, "zxdg_output_manager_v1", 3)
[2365350.751] [email protected](9, "org_kde_kwin_idle", 1)
[2365350.753] [email protected](10, "ext_idle_notifier_v1", 1)
[2365350.754] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365350.756] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365350.757] [email protected](13, "xdg_wm_base", 2)
[2365350.759] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365350.761] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365350.762] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365350.764] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365350.766] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365350.767] [email protected](19, "wp_presentation", 1)
[2365350.769] [email protected](20, "zwlr_output_manager_v1", 4)
[2365350.770] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365350.772] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365350.773] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365350.775] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365350.777] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365350.778] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365350.780] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365350.781] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365350.783] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365350.784] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365350.786] [email protected](31, "wp_viewporter", 1)
[2365350.787] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365350.789] [email protected](33, "zxdg_exporter_v1", 1)
[2365350.791] [email protected](34, "zxdg_importer_v1", 1)
[2365350.793] [email protected](35, "zxdg_exporter_v2", 1)
[2365350.794] [email protected](36, "zxdg_importer_v2", 1)
[2365350.796] [email protected](37, "xdg_activation_v1", 1)
[2365350.798] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365350.799] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365350.801] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365350.803] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365350.804] [email protected](42, "wl_seat", 8)
[2365350.806] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365350.807] [email protected](44, "wl_output", 4)
[2365350.809] [email protected](9709)
[2365350.811]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@3)
[2365350.813]  -> [email protected](new id wl_callback@5)
[2365350.837] [email protected]_id(5)
[2365350.839] [email protected]_device(array[8])
[2365350.999] [email protected]_table(fd 11, 5376)
[2365351.007] [email protected]_target_device(array[8])
[2365351.009] [email protected]_flags(0)
[2365351.010] [email protected]_formats(array[672])
[2365351.016] [email protected]_done()
[2365351.018] [email protected]()
[2365351.019] [email protected](9709)
[2365351.021]  -> [email protected]()
[2365361.121]  -> [email protected]_registry(new id wl_registry@28)
[2365361.126]  -> [email protected](new id wl_callback@27)
[2365361.163] [email protected]_id(27)
[2365361.166] [email protected](1, "wl_shm", 1)
[2365361.168] [email protected](2, "wl_drm", 2)
[2365361.170] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365361.172]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@29)
[2365361.174] [email protected](4, "wl_compositor", 5)
[2365361.175] [email protected](5, "wl_subcompositor", 1)
[2365361.177] [email protected](6, "wl_data_device_manager", 3)
[2365361.179] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365361.180] [email protected](8, "zxdg_output_manager_v1", 3)
[2365361.182] [email protected](9, "org_kde_kwin_idle", 1)
[2365361.183] [email protected](10, "ext_idle_notifier_v1", 1)
[2365361.185] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365361.187] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365361.188] [email protected](13, "xdg_wm_base", 2)
[2365361.190] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365361.192] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365361.193] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365361.195] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365361.196] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365361.198] [email protected](19, "wp_presentation", 1)
[2365361.199] [email protected](20, "zwlr_output_manager_v1", 4)
[2365361.201] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365361.203] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365361.204] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365361.206] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365361.212] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365361.214] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365361.215] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365361.217] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365361.218] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365361.220] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365361.221] [email protected](31, "wp_viewporter", 1)
[2365361.223] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365361.224] [email protected](33, "zxdg_exporter_v1", 1)
[2365361.226] [email protected](34, "zxdg_importer_v1", 1)
[2365361.227] [email protected](35, "zxdg_exporter_v2", 1)
[2365361.229] [email protected](36, "zxdg_importer_v2", 1)
[2365361.230] [email protected](37, "xdg_activation_v1", 1)
[2365361.232] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365361.233] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365361.235] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365361.236] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365361.238] [email protected](42, "wl_seat", 8)
[2365361.240] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365361.241] [email protected](44, "wl_output", 4)
[2365361.243] [email protected](9709)
[2365361.244]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@27)
[2365361.246]  -> [email protected](new id wl_callback@30)
[2365361.266] [email protected]_id(30)
[2365361.268] [email protected]_device(array[8])
[2365361.404] [email protected]_table(fd 9, 5376)
[2365361.414] [email protected]_target_device(array[8])
[2365361.416] [email protected]_flags(0)
[2365361.418] [email protected]_formats(array[672])
[2365361.422] [email protected]_done()
[2365361.424] [email protected]()
[2365361.426] [email protected](9709)
[2365361.428]  -> [email protected]()
[2365368.513]  -> [email protected]()
[2365369.329]  -> [email protected]_registry(new id wl_registry@30)
[2365369.334]  -> [email protected](new id wl_callback@31)
[2365369.373] [email protected]_id(27)
[2365369.376] [email protected]_id(31)
[2365369.378] [email protected](1, "wl_shm", 1)
[2365369.381] [email protected](2, "wl_drm", 2)
[2365369.382] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365369.384]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365369.386] [email protected](4, "wl_compositor", 5)
[2365369.388] [email protected](5, "wl_subcompositor", 1)
[2365369.390] [email protected](6, "wl_data_device_manager", 3)
[2365369.391] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365369.393] [email protected](8, "zxdg_output_manager_v1", 3)
[2365369.395] [email protected](9, "org_kde_kwin_idle", 1)
[2365369.396] [email protected](10, "ext_idle_notifier_v1", 1)
[2365369.399] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365369.402] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365369.404] [email protected](13, "xdg_wm_base", 2)
[2365369.407] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365369.409] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365369.412] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365369.415] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365369.417] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365369.419] [email protected](19, "wp_presentation", 1)
[2365369.420] [email protected](20, "zwlr_output_manager_v1", 4)
[2365369.422] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365369.424] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365369.426] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365369.428] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365369.429] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365369.431] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365369.432] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365369.434] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365369.436] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365369.437] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365369.439] [email protected](31, "wp_viewporter", 1)
[2365369.441] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365369.442] [email protected](33, "zxdg_exporter_v1", 1)
[2365369.444] [email protected](34, "zxdg_importer_v1", 1)
[2365369.445] [email protected](35, "zxdg_exporter_v2", 1)
[2365369.447] [email protected](36, "zxdg_importer_v2", 1)
[2365369.449] [email protected](37, "xdg_activation_v1", 1)
[2365369.451] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365369.452] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365369.454] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365369.455] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365369.457] [email protected](42, "wl_seat", 8)
[2365369.459] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365369.461] [email protected](44, "wl_output", 4)
[2365369.462] [email protected](9709)
[2365369.464]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@31)
[2365369.467]  -> [email protected](new id wl_callback@32)
[2365369.487] [email protected]_id(32)
[2365369.489] [email protected]_device(array[8])
[2365369.492] [email protected]_table(fd 11, 5376)
[2365369.498] [email protected]_target_device(array[8])
[2365369.500] [email protected]_flags(0)
[2365369.501] [email protected]_formats(array[672])
[2365369.512] [email protected]_done()
[2365369.513] [email protected]()
[2365369.515] [email protected](9709)
[2365369.517]  -> [email protected](new id wl_callback@32)
[2365369.530] [email protected]_id(32)
[2365369.532] [email protected](9709)
[2365369.533]  -> [email protected]()
[2365369.540]  -> [email protected]()
[2365369.543]  -> [email protected]_registry(new id wl_registry@32)
[2365369.545]  -> [email protected](new id wl_callback@33)
[2365369.570] [email protected]_id(31)
[2365369.572] [email protected]_id(27)
[2365369.573] [email protected]_id(33)
[2365369.575] [email protected](1, "wl_shm", 1)
[2365369.577] [email protected](2, "wl_drm", 2)
[2365369.578] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365369.580]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365369.582] [email protected](4, "wl_compositor", 5)
[2365369.584] [email protected](5, "wl_subcompositor", 1)
[2365369.586] [email protected](6, "wl_data_device_manager", 3)
[2365369.587] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365369.589] [email protected](8, "zxdg_output_manager_v1", 3)
[2365369.590] [email protected](9, "org_kde_kwin_idle", 1)
[2365369.592] [email protected](10, "ext_idle_notifier_v1", 1)
[2365369.593] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365369.595] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365369.596] [email protected](13, "xdg_wm_base", 2)
[2365369.598] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365369.600] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365369.601] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365369.603] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365369.604] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365369.606] [email protected](19, "wp_presentation", 1)
[2365369.607] [email protected](20, "zwlr_output_manager_v1", 4)
[2365369.609] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365369.611] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365369.612] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365369.614] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365369.615] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365369.617] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365369.618] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365369.620] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365369.621] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365369.623] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365369.624] [email protected](31, "wp_viewporter", 1)
[2365369.626] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365369.627] [email protected](33, "zxdg_exporter_v1", 1)
[2365369.629] [email protected](34, "zxdg_importer_v1", 1)
[2365369.630] [email protected](35, "zxdg_exporter_v2", 1)
[2365369.632] [email protected](36, "zxdg_importer_v2", 1)
[2365369.634] [email protected](37, "xdg_activation_v1", 1)
[2365369.635] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365369.637] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365369.638] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365369.640] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365369.641] [email protected](42, "wl_seat", 8)
[2365369.643] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365369.644] [email protected](44, "wl_output", 4)
[2365369.646] [email protected](9709)
[2365369.648]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@33)
[2365369.650]  -> [email protected](new id wl_callback@31)
[2365369.666] [email protected]_id(31)
[2365369.668] [email protected]_device(array[8])
[2365369.670] [email protected]_table(fd 11, 5376)
[2365369.675] [email protected]_target_device(array[8])
[2365369.676] [email protected]_flags(0)
[2365369.678] [email protected]_formats(array[672])
[2365369.686] [email protected]_done()
[2365369.688] [email protected]()
[2365369.689] [email protected](9709)
[2365369.691]  -> [email protected](new id wl_callback@31)
[2365369.703] [email protected]_id(31)
[2365369.705] [email protected](9709)
[2365369.707]  -> [email protected]()
[2365369.713]  -> [email protected]()
2023-11-30T13:23:00.466286Z  INFO bevy_render::renderer: AdapterInfo { name: "AMD Radeon RX 6650 XT (RADV NAVI23)", vendor: 4098, device: 29679, device_type: DiscreteGpu, driver: "radv", driver_info: "Mesa 23.1.9-manjaro1.1", backend: Vulkan }
2023-11-30T13:23:00.769948Z  INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Linux 23.1.0 Manjaro Linux", kernel: "6.1.63-1-MANJARO", cpu: "AMD Ryzen 7 5800X 8-Core Processor", core_count: "8", memory: "31.3 GiB" }
[2365713.153]  -> [email protected]_registry(new id wl_registry@31)
[2365713.165]  -> [email protected](new id wl_callback@34)
[2365713.228] [email protected]_id(33)
[2365713.234] [email protected]_id(27)
[2365713.237] [email protected]_id(34)
[2365713.241] [email protected](1, "wl_shm", 1)
[2365713.246] [email protected](2, "wl_drm", 2)
[2365713.250] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365713.254]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365713.258] [email protected](4, "wl_compositor", 5)
[2365713.262] [email protected](5, "wl_subcompositor", 1)
[2365713.265] [email protected](6, "wl_data_device_manager", 3)
[2365713.269] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365713.272] [email protected](8, "zxdg_output_manager_v1", 3)
[2365713.276] [email protected](9, "org_kde_kwin_idle", 1)
[2365713.279] [email protected](10, "ext_idle_notifier_v1", 1)
[2365713.283] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365713.286] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365713.290] [email protected](13, "xdg_wm_base", 2)
[2365713.294] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365713.298] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365713.302] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365713.306] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365713.310] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365713.313] [email protected](19, "wp_presentation", 1)
[2365713.317] [email protected](20, "zwlr_output_manager_v1", 4)
[2365713.321] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365713.325] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365713.329] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365713.333] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365713.337] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365713.341] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365713.344] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365713.348] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365713.352] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365713.356] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365713.359] [email protected](31, "wp_viewporter", 1)
[2365713.362] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365713.366] [email protected](33, "zxdg_exporter_v1", 1)
[2365713.369] [email protected](34, "zxdg_importer_v1", 1)
[2365713.372] [email protected](35, "zxdg_exporter_v2", 1)
[2365713.375] [email protected](36, "zxdg_importer_v2", 1)
[2365713.379] [email protected](37, "xdg_activation_v1", 1)
[2365713.382] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365713.385] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365713.388] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365713.391] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365713.395] [email protected](42, "wl_seat", 8)
[2365713.398] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365713.401] [email protected](44, "wl_output", 4)
[2365713.404] [email protected](9710)
[2365713.408]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@34)
[2365713.413]  -> [email protected](new id wl_callback@33)
[2365713.454] [email protected]_id(33)
[2365713.458] [email protected]_device(array[8])
[2365713.462] [email protected]_table(fd 44, 5376)
[2365713.476] [email protected]_target_device(array[8])
[2365713.480] [email protected]_flags(0)
[2365713.483] [email protected]_formats(array[672])
[2365713.504] [email protected]_done()
[2365713.507] [email protected]()
[2365713.511] [email protected](9710)
[2365713.515]  -> [email protected](new id wl_callback@33)
[2365713.539] [email protected]_id(33)
[2365713.543] [email protected](9710)
[2365713.547]  -> [email protected]()
[2365713.562]  -> [email protected]()
[2365713.568]  -> [email protected]_registry(new id wl_registry@33)
[2365713.572]  -> [email protected](new id wl_callback@35)
[2365713.613] [email protected]_id(34)
[2365713.617] [email protected]_id(27)
[2365713.621] [email protected]_id(35)
[2365713.625] [email protected](1, "wl_shm", 1)
[2365713.629] [email protected](2, "wl_drm", 2)
[2365713.632] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365713.636]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365713.641] [email protected](4, "wl_compositor", 5)
[2365713.644] [email protected](5, "wl_subcompositor", 1)
[2365713.647] [email protected](6, "wl_data_device_manager", 3)
[2365713.651] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365713.655] [email protected](8, "zxdg_output_manager_v1", 3)
[2365713.658] [email protected](9, "org_kde_kwin_idle", 1)
[2365713.661] [email protected](10, "ext_idle_notifier_v1", 1)
[2365713.665] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365713.668] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365713.671] [email protected](13, "xdg_wm_base", 2)
[2365713.675] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365713.679] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365713.683] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365713.686] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365713.689] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365713.692] [email protected](19, "wp_presentation", 1)
[2365713.695] [email protected](20, "zwlr_output_manager_v1", 4)
[2365713.698] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365713.702] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365713.705] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365713.708] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365713.711] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365713.715] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365713.718] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365713.721] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365713.724] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365713.727] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365713.730] [email protected](31, "wp_viewporter", 1)
[2365713.733] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365713.737] [email protected](33, "zxdg_exporter_v1", 1)
[2365713.740] [email protected](34, "zxdg_importer_v1", 1)
[2365713.743] [email protected](35, "zxdg_exporter_v2", 1)
[2365713.746] [email protected](36, "zxdg_importer_v2", 1)
[2365713.749] [email protected](37, "xdg_activation_v1", 1)
[2365713.752] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365713.755] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365713.758] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365713.761] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365713.764] [email protected](42, "wl_seat", 8)
[2365713.767] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365713.770] [email protected](44, "wl_output", 4)
[2365713.772] [email protected](9710)
[2365713.775]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@35)
[2365713.778]  -> [email protected](new id wl_callback@34)
[2365713.804] [email protected]_id(34)
[2365713.807] [email protected]_device(array[8])
[2365713.809] [email protected]_table(fd 44, 5376)
[2365713.816] [email protected]_target_device(array[8])
[2365713.818] [email protected]_flags(0)
[2365713.821] [email protected]_formats(array[672])
[2365713.834] [email protected]_done()
[2365713.836] [email protected]()
[2365713.839] [email protected](9710)
[2365713.843]  -> [email protected](new id wl_callback@34)
[2365713.862] [email protected]_id(34)
[2365713.866] [email protected](9710)
[2365713.868]  -> [email protected]()
[2365713.877]  -> [email protected]()
[2365714.325]  -> [email protected]_registry(new id wl_registry@34)
[2365714.331]  -> [email protected](new id wl_callback@36)
[2365714.370] [email protected]_id(35)
[2365714.374] [email protected]_id(27)
[2365714.377] [email protected]_id(36)
[2365714.380] [email protected](1, "wl_shm", 1)
[2365714.383] [email protected](2, "wl_drm", 2)
[2365714.386] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365714.389]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365714.393] [email protected](4, "wl_compositor", 5)
[2365714.396] [email protected](5, "wl_subcompositor", 1)
[2365714.399] [email protected](6, "wl_data_device_manager", 3)
[2365714.402] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365714.405] [email protected](8, "zxdg_output_manager_v1", 3)
[2365714.409] [email protected](9, "org_kde_kwin_idle", 1)
[2365714.411] [email protected](10, "ext_idle_notifier_v1", 1)
[2365714.414] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365714.417] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365714.420] [email protected](13, "xdg_wm_base", 2)
[2365714.422] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365714.423] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365714.425] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365714.427] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365714.428] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365714.430] [email protected](19, "wp_presentation", 1)
[2365714.431] [email protected](20, "zwlr_output_manager_v1", 4)
[2365714.433] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365714.435] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365714.436] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365714.438] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365714.439] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365714.441] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365714.443] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365714.444] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365714.446] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365714.447] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365714.449] [email protected](31, "wp_viewporter", 1)
[2365714.450] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365714.452] [email protected](33, "zxdg_exporter_v1", 1)
[2365714.454] [email protected](34, "zxdg_importer_v1", 1)
[2365714.455] [email protected](35, "zxdg_exporter_v2", 1)
[2365714.457] [email protected](36, "zxdg_importer_v2", 1)
[2365714.459] [email protected](37, "xdg_activation_v1", 1)
[2365714.460] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365714.462] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365714.464] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365714.465] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365714.467] [email protected](42, "wl_seat", 8)
[2365714.469] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365714.470] [email protected](44, "wl_output", 4)
[2365714.472] [email protected](9710)
[2365714.474]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@36)
[2365714.476]  -> [email protected](new id wl_callback@35)
[2365714.500] [email protected]_id(35)
[2365714.502] [email protected]_device(array[8])
[2365714.504] [email protected]_table(fd 44, 5376)
[2365714.509] [email protected]_target_device(array[8])
[2365714.511] [email protected]_flags(0)
[2365714.513] [email protected]_formats(array[672])
[2365714.523] [email protected]_done()
[2365714.524] [email protected]()
[2365714.526] [email protected](9710)
[2365714.528]  -> [email protected](new id wl_callback@35)
[2365714.544] [email protected]_id(35)
[2365714.547] [email protected](9710)
[2365714.550]  -> [email protected]()
[2365714.557]  -> [email protected]()
[2365714.560]  -> [email protected]_registry(new id wl_registry@35)
[2365714.563]  -> [email protected](new id wl_callback@37)
[2365714.590] [email protected]_id(36)
[2365714.592] [email protected]_id(27)
[2365714.593] [email protected]_id(37)
[2365714.595] [email protected](1, "wl_shm", 1)
[2365714.597] [email protected](2, "wl_drm", 2)
[2365714.598] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365714.600]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365714.602] [email protected](4, "wl_compositor", 5)
[2365714.604] [email protected](5, "wl_subcompositor", 1)
[2365714.606] [email protected](6, "wl_data_device_manager", 3)
[2365714.607] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365714.609] [email protected](8, "zxdg_output_manager_v1", 3)
[2365714.611] [email protected](9, "org_kde_kwin_idle", 1)
[2365714.613] [email protected](10, "ext_idle_notifier_v1", 1)
[2365714.614] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365714.616] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365714.617] [email protected](13, "xdg_wm_base", 2)
[2365714.619] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365714.621] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365714.622] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365714.624] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365714.626] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365714.627] [email protected](19, "wp_presentation", 1)
[2365714.629] [email protected](20, "zwlr_output_manager_v1", 4)
[2365714.631] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365714.632] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365714.634] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365714.635] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365714.637] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365714.639] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365714.641] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365714.642] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365714.644] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365714.645] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365714.647] [email protected](31, "wp_viewporter", 1)
[2365714.648] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365714.650] [email protected](33, "zxdg_exporter_v1", 1)
[2365714.652] [email protected](34, "zxdg_importer_v1", 1)
[2365714.653] [email protected](35, "zxdg_exporter_v2", 1)
[2365714.655] [email protected](36, "zxdg_importer_v2", 1)
[2365714.656] [email protected](37, "xdg_activation_v1", 1)
[2365714.658] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365714.660] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365714.662] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365714.663] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365714.665] [email protected](42, "wl_seat", 8)
[2365714.666] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365714.668] [email protected](44, "wl_output", 4)
[2365714.670] [email protected](9710)
[2365714.671]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@37)
[2365714.673]  -> [email protected](new id wl_callback@36)
[2365714.690] [email protected]_id(36)
[2365714.692] [email protected]_device(array[8])
[2365714.694] [email protected]_table(fd 44, 5376)
[2365714.698] [email protected]_target_device(array[8])
[2365714.700] [email protected]_flags(0)
[2365714.701] [email protected]_formats(array[672])
[2365714.709] [email protected]_done()
[2365714.711] [email protected]()
[2365714.712] [email protected](9710)
[2365714.714]  -> [email protected](new id wl_callback@36)
[2365714.727] [email protected]_id(36)
[2365714.728] [email protected](9710)
[2365714.730]  -> [email protected]()
[2365714.735]  -> [email protected]()
[2365714.785]  -> [email protected]_registry(new id wl_registry@36)
[2365714.788]  -> [email protected](new id wl_callback@38)
[2365714.815] [email protected]_id(37)
[2365714.817] [email protected]_id(27)
[2365714.819] [email protected]_id(38)
[2365714.821] [email protected](1, "wl_shm", 1)
[2365714.823] [email protected](2, "wl_drm", 2)
[2365714.824] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365714.826]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@27)
[2365714.828] [email protected](4, "wl_compositor", 5)
[2365714.830] [email protected](5, "wl_subcompositor", 1)
[2365714.832] [email protected](6, "wl_data_device_manager", 3)
[2365714.833] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365714.835] [email protected](8, "zxdg_output_manager_v1", 3)
[2365714.837] [email protected](9, "org_kde_kwin_idle", 1)
[2365714.838] [email protected](10, "ext_idle_notifier_v1", 1)
[2365714.840] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365714.841] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365714.843] [email protected](13, "xdg_wm_base", 2)
[2365714.844] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365714.846] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365714.847] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365714.849] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365714.851] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365714.852] [email protected](19, "wp_presentation", 1)
[2365714.854] [email protected](20, "zwlr_output_manager_v1", 4)
[2365714.855] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365714.857] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365714.858] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365714.860] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365714.861] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365714.863] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365714.865] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365714.866] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365714.868] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365714.869] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365714.871] [email protected](31, "wp_viewporter", 1)
[2365714.872] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365714.874] [email protected](33, "zxdg_exporter_v1", 1)
[2365714.875] [email protected](34, "zxdg_importer_v1", 1)
[2365714.877] [email protected](35, "zxdg_exporter_v2", 1)
[2365714.878] [email protected](36, "zxdg_importer_v2", 1)
[2365714.880] [email protected](37, "xdg_activation_v1", 1)
[2365714.882] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365714.883] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365714.885] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365714.886] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365714.888] [email protected](42, "wl_seat", 8)
[2365714.890] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365714.891] [email protected](44, "wl_output", 4)
[2365714.893] [email protected](9710)
[2365714.894]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@38)
[2365714.896]  -> [email protected](new id wl_callback@37)
[2365714.912] [email protected]_id(37)
[2365714.913] [email protected]_device(array[8])
[2365714.915] [email protected]_table(fd 44, 5376)
[2365714.920] [email protected]_target_device(array[8])
[2365714.922] [email protected]_flags(0)
[2365714.923] [email protected]_formats(array[672])
[2365714.932] [email protected]_done()
[2365714.933] [email protected]()
[2365714.935] [email protected](9710)
[2365714.936]  -> [email protected](new id wl_callback@37)
[2365714.948] [email protected]_id(37)
[2365714.950] [email protected](9710)
[2365714.952]  -> [email protected]()
[2365714.957]  -> [email protected]_surface_feedback(new id zwp_linux_dmabuf_feedback_v1@37, wl_surface@19)
[2365714.959]  -> [email protected](new id wl_callback@39)
[2365714.975] [email protected]_id(38)
[2365714.977] [email protected]_id(39)
[2365714.979] [email protected]_device(array[8])
[2365714.981] [email protected]_table(fd 44, 5376)
[2365714.985] [email protected]_target_device(array[8])
[2365714.986] [email protected]_flags(0)
[2365714.988] [email protected]_formats(array[672])
[2365714.996] [email protected]_done()
[2365714.998] [email protected]()
[2365714.999] [email protected](9710)
[2365715.086]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@39)
[2365715.090]  -> [email protected](fd 45, 0, 0, 5120, 33554432, 410434307)
[2365715.093]  -> [email protected](fd 46, 1, 3932160, 1536, 33554432, 410434307)
[2365715.095]  -> [email protected]_immed(new id wl_buffer@38, 1280, 720, 875713112, 0)
[2365715.097]  -> [email protected]()
[2365715.120]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@40)
[2365715.123]  -> [email protected](fd 48, 0, 0, 5120, 33554432, 410434307)
[2365715.125]  -> [email protected](fd 49, 1, 3932160, 1536, 33554432, 410434307)
[2365715.127]  -> [email protected]_immed(new id wl_buffer@41, 1280, 720, 875713112, 0)
[2365715.129]  -> [email protected]()
[2365715.148]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@42)
[2365715.151]  -> [email protected](fd 51, 0, 0, 5120, 33554432, 410434307)
[2365715.153]  -> [email protected](fd 52, 1, 3932160, 1536, 33554432, 410434307)
[2365715.155]  -> [email protected]_immed(new id wl_buffer@43, 1280, 720, 875713112, 0)
[2365715.156]  -> [email protected]()
[2365715.173]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@44)
[2365715.175]  -> [email protected](fd 54, 0, 0, 5120, 33554432, 410434307)
[2365715.178]  -> [email protected](fd 55, 1, 3932160, 1536, 33554432, 410434307)
[2365715.180]  -> [email protected]_immed(new id wl_buffer@45, 1280, 720, 875713112, 0)
[2365715.181]  -> [email protected]()
[2365804.391]  -> [email protected](wl_buffer@38, 0, 0)
[2365804.398]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365804.401]  -> [email protected](new id wl_callback@46)
[2365804.403]  -> [email protected]()
[2365810.010] [email protected]_id(39)
[2365810.017] [email protected]_id(40)
[2365810.020] [email protected]_id(42)
[2365810.022] [email protected]_id(44)
[2365810.024] [email protected]_id(46)
[2365810.025] [email protected](2350758)
[2365810.029]  -> [email protected](wl_buffer@41, 0, 0)
[2365810.032]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365810.035]  -> [email protected](new id wl_callback@46)
[2365810.037]  -> [email protected]()
[2365810.648] [email protected](9714, wl_surface@19, array[0])
[2365810.693] [email protected](9715, 0, 0, 0, 0)
[2365810.703] [email protected](470, 251, array[20])
[2365810.726] [email protected](9711)
[2365810.736]  -> [email protected]_configure(9711)
[2365811.841]  -> [email protected]_window_geometry(0, 0, 470, 251)
[2365811.853]  -> [email protected]_region(new id wl_region@44)
[2365811.861]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365811.868]  -> [email protected]_opaque_region(wl_region@44)
[2365811.872]  -> [email protected]()
[2365826.939] [email protected]_id(44)
[2365826.946] [email protected]_id(46)
[2365826.950] [email protected](2350775)
[2365826.953]  -> [email protected](wl_buffer@43, 0, 0)
[2365826.957]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365826.960]  -> [email protected](new id wl_callback@46)
[2365826.962]  -> [email protected]()
[2365828.113]  -> [email protected]_registry(new id wl_registry@44)
[2365828.120]  -> [email protected](new id wl_callback@42)
[2365829.150] [email protected]_id(42)
[2365829.153] [email protected](1, "wl_shm", 1)
[2365829.155] [email protected](2, "wl_drm", 2)
[2365829.158] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365829.162]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@40)
[2365829.166] [email protected](4, "wl_compositor", 5)
[2365829.169] [email protected](5, "wl_subcompositor", 1)
[2365829.172] [email protected](6, "wl_data_device_manager", 3)
[2365829.175] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365829.178] [email protected](8, "zxdg_output_manager_v1", 3)
[2365829.180] [email protected](9, "org_kde_kwin_idle", 1)
[2365829.183] [email protected](10, "ext_idle_notifier_v1", 1)
[2365829.186] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365829.189] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365829.191] [email protected](13, "xdg_wm_base", 2)
[2365829.194] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365829.197] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365829.199] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365829.202] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365829.205] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365829.208] [email protected](19, "wp_presentation", 1)
[2365829.211] [email protected](20, "zwlr_output_manager_v1", 4)
[2365829.213] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365829.216] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365829.219] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365829.222] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365829.225] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365829.228] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365829.230] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365829.233] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365829.236] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365829.239] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365829.241] [email protected](31, "wp_viewporter", 1)
[2365829.244] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365829.247] [email protected](33, "zxdg_exporter_v1", 1)
[2365829.249] [email protected](34, "zxdg_importer_v1", 1)
[2365829.252] [email protected](35, "zxdg_exporter_v2", 1)
[2365829.255] [email protected](36, "zxdg_importer_v2", 1)
[2365829.258] [email protected](37, "xdg_activation_v1", 1)
[2365829.261] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365829.263] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365829.266] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365829.269] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365829.271] [email protected](42, "wl_seat", 8)
[2365829.274] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365829.276] [email protected](44, "wl_output", 4)
[2365829.279] [email protected](9717)
[2365829.282]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@42)
[2365829.286]  -> [email protected](new id wl_callback@39)
[2365829.306] [email protected]_id(39)
[2365829.308] [email protected]_device(array[8])
[2365829.311] [email protected]_table(fd 45, 5376)
[2365829.321] [email protected]_target_device(array[8])
[2365829.323] [email protected]_flags(0)
[2365829.325] [email protected]_formats(array[672])
[2365829.340] [email protected]_done()
[2365829.341] [email protected]()
[2365829.344] [email protected](9717)
[2365829.347]  -> [email protected](new id wl_callback@39)
[2365829.359] [email protected]_id(39)
[2365829.361] [email protected](9717)
[2365829.363]  -> [email protected]()
[2365829.372]  -> [email protected]()
[2365829.376]  -> [email protected]_registry(new id wl_registry@39)
[2365829.379]  -> [email protected](new id wl_callback@47)
[2365829.402] [email protected]_id(42)
[2365829.404] [email protected]_id(40)
[2365829.406] [email protected]_id(47)
[2365829.408] [email protected](1, "wl_shm", 1)
[2365829.411] [email protected](2, "wl_drm", 2)
[2365829.414] [email protected](3, "zwp_linux_dmabuf_v1", 4)
[2365829.417]  -> [email protected](3, "zwp_linux_dmabuf_v1", 4, new id [unknown]@40)
[2365829.421] [email protected](4, "wl_compositor", 5)
[2365829.423] [email protected](5, "wl_subcompositor", 1)
[2365829.426] [email protected](6, "wl_data_device_manager", 3)
[2365829.429] [email protected](7, "zwlr_gamma_control_manager_v1", 1)
[2365829.432] [email protected](8, "zxdg_output_manager_v1", 3)
[2365829.434] [email protected](9, "org_kde_kwin_idle", 1)
[2365829.437] [email protected](10, "ext_idle_notifier_v1", 1)
[2365829.440] [email protected](11, "zwp_idle_inhibit_manager_v1", 1)
[2365829.443] [email protected](12, "zwlr_layer_shell_v1", 4)
[2365829.445] [email protected](13, "xdg_wm_base", 2)
[2365829.448] [email protected](14, "zwp_tablet_manager_v2", 1)
[2365829.451] [email protected](15, "org_kde_kwin_server_decoration_manager", 1)
[2365829.454] [email protected](16, "zxdg_decoration_manager_v1", 1)
[2365829.456] [email protected](17, "zwp_relative_pointer_manager_v1", 1)
[2365829.459] [email protected](18, "zwp_pointer_constraints_v1", 1)
[2365829.462] [email protected](19, "wp_presentation", 1)
[2365829.464] [email protected](20, "zwlr_output_manager_v1", 4)
[2365829.467] [email protected](21, "zwlr_output_power_manager_v1", 1)
[2365829.470] [email protected](22, "zwp_input_method_manager_v2", 1)
[2365829.473] [email protected](23, "zwp_text_input_manager_v3", 1)
[2365829.476] [email protected](24, "zwlr_foreign_toplevel_manager_v1", 3)
[2365829.479] [email protected](25, "ext_session_lock_manager_v1", 1)
[2365829.481] [email protected](26, "wp_drm_lease_device_v1", 1)
[2365829.484] [email protected](27, "zwlr_export_dmabuf_manager_v1", 1)
[2365829.487] [email protected](28, "zwlr_screencopy_manager_v1", 3)
[2365829.490] [email protected](29, "zwlr_data_control_manager_v1", 2)
[2365829.492] [email protected](30, "zwp_primary_selection_device_manager_v1", 1)
[2365829.495] [email protected](31, "wp_viewporter", 1)
[2365829.498] [email protected](32, "wp_single_pixel_buffer_manager_v1", 1)
[2365829.500] [email protected](33, "zxdg_exporter_v1", 1)
[2365829.503] [email protected](34, "zxdg_importer_v1", 1)
[2365829.506] [email protected](35, "zxdg_exporter_v2", 1)
[2365829.509] [email protected](36, "zxdg_importer_v2", 1)
[2365829.511] [email protected](37, "xdg_activation_v1", 1)
[2365829.514] [email protected](38, "zwp_virtual_keyboard_manager_v1", 1)
[2365829.517] [email protected](39, "zwlr_virtual_pointer_manager_v1", 2)
[2365829.520] [email protected](40, "zwlr_input_inhibit_manager_v1", 1)
[2365829.522] [email protected](41, "zwp_keyboard_shortcuts_inhibit_manager_v1", 1)
[2365829.525] [email protected](42, "wl_seat", 8)
[2365829.528] [email protected](43, "zwp_pointer_gestures_v1", 3)
[2365829.531] [email protected](44, "wl_output", 4)
[2365829.533] [email protected](9717)
[2365829.536]  -> [email protected]_default_feedback(new id zwp_linux_dmabuf_feedback_v1@47)
[2365829.539]  -> [email protected](new id wl_callback@42)
[2365829.555] [email protected]_id(42)
[2365829.557] [email protected]_device(array[8])
[2365829.559] [email protected]_table(fd 45, 5376)
[2365829.565] [email protected]_target_device(array[8])
[2365829.568] [email protected]_flags(0)
[2365829.571] [email protected]_formats(array[672])
[2365829.582] [email protected]_done()
[2365829.584] [email protected]()
[2365829.586] [email protected](9717)
[2365829.589]  -> [email protected](new id wl_callback@42)
[2365829.600] [email protected]_id(42)
[2365829.602] [email protected](9717)
[2365829.605]  -> [email protected]()
[2365829.612]  -> [email protected]()
[2365829.792]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@42)
[2365829.797]  -> [email protected](fd 46, 0, 0, 2048, 33554432, 410434307)
[2365829.802]  -> [email protected](fd 48, 1, 524288, 512, 33554432, 410434307)
[2365829.806]  -> [email protected]_immed(new id wl_buffer@48, 470, 251, 875713112, 0)
[2365829.810]  -> [email protected]()
[2365829.831]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@49)
[2365829.834]  -> [email protected](fd 51, 0, 0, 2048, 33554432, 410434307)
[2365829.838]  -> [email protected](fd 52, 1, 524288, 512, 33554432, 410434307)
[2365829.842]  -> [email protected]_immed(new id wl_buffer@50, 470, 251, 875713112, 0)
[2365829.845]  -> [email protected]()
[2365829.867]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@51)
[2365829.869]  -> [email protected](fd 55, 0, 0, 2048, 33554432, 410434307)
[2365829.873]  -> [email protected](fd 56, 1, 524288, 512, 33554432, 410434307)
[2365829.876]  -> [email protected]_immed(new id wl_buffer@52, 470, 251, 875713112, 0)
[2365829.880]  -> [email protected]()
[2365829.920]  -> [email protected]_params(new id zwp_linux_buffer_params_v1@53)
[2365829.923]  -> [email protected](fd 58, 0, 0, 2048, 33554432, 410434307)
[2365829.927]  -> [email protected](fd 59, 1, 524288, 512, 33554432, 410434307)
[2365829.930]  -> [email protected]_immed(new id wl_buffer@54, 470, 251, 875713112, 0)
[2365829.933]  -> [email protected]()
[2365829.937]  -> [email protected]()
[2365829.949]  -> [email protected]()
[2365829.957]  -> [email protected]()
[2365829.965]  -> [email protected]()
[2365829.988] discarded [email protected]()
[2365829.990] discarded [email protected]()
[2365831.743]  -> [email protected](wl_buffer@48, 0, 0)
[2365831.749]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365831.751]  -> [email protected](new id wl_callback@55)
[2365831.754]  -> [email protected]()
[2365832.226] [email protected](wl_output@14)
[2365832.259]  -> [email protected]_buffer_scale(2)
[2365832.265] [email protected](9717, wl_surface@19, 309.86328125, 81.61718750)
[2365832.279] [email protected]()
[2365832.282] [email protected](9717, wl_surface@19, 309.86328125, 81.61718750)
[2365832.309]  -> [email protected]_pool(new id wl_shm_pool@56, fd 46, 1024)
[2365832.601]  -> [email protected](5120)
[2365832.611]  -> [email protected]_buffer(new id wl_buffer@57, 1024, 32, 32, 128, 0)
[2365832.623]  -> [email protected]_buffer_scale(1)
[2365832.627]  -> [email protected](wl_buffer@57, 0, 0)
[2365832.630]  -> [email protected]_buffer(0, 0, 32, 32)
[2365832.634]  -> [email protected]()
[2365832.639]  -> [email protected]_cursor(9717, wl_surface@3, 4, 4)
[2365832.646] [email protected]()
[2365832.799] [email protected]_id(47)
[2365832.802] [email protected]_id(40)
[2365832.803] [email protected]_id(42)
[2365832.805] [email protected]_id(49)
[2365832.808] [email protected]_id(51)
[2365832.810] [email protected]_id(53)
[2365832.813] [email protected]_id(38)
[2365832.815] [email protected]_id(41)
[2365832.818] [email protected]_id(43)
[2365832.820] [email protected]_id(45)
[2365832.823] [email protected]()
[2365832.828] [email protected](wl_output@14)
[2365832.848]  -> [email protected]_pool(new id wl_shm_pool@45, fd 47, 1024)
[2365833.105]  -> [email protected](17408)
[2365833.117]  -> [email protected]_buffer(new id wl_buffer@43, 1024, 64, 64, 256, 0)
[2365833.127]  -> [email protected]_buffer_scale(2)
[2365833.130]  -> [email protected](wl_buffer@43, 0, 0)
[2365833.134]  -> [email protected]_buffer(0, 0, 64, 64)
[2365833.137]  -> [email protected]()
[2365833.141]  -> [email protected]_cursor(9717, wl_surface@3, 4, 4)
[2365833.193]  -> [email protected]_window_geometry(0, 0, 470, 251)
[2365833.201]  -> [email protected]_region(new id wl_region@41)
[2365833.206]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365833.211]  -> [email protected]_opaque_region(wl_region@41)
[2365833.214]  -> [email protected]()
[2365843.695] discarded [unknown]@46.[event 0](0 fd, 12 byte)
[2365843.701] [email protected]_id(41)
[2365843.706] [email protected]_id(55)
[2365843.711] [email protected]_id(46)
[2365843.717] [email protected](2350792)
[2365843.721]  -> [email protected](wl_buffer@50, 0, 0)
[2365843.727]  -> [email protected](0, 0, 2147483647, 2147483647)
[2365843.731]  -> [email protected](new id wl_callback@55)
[2365843.735]  -> [email protected]()
[2365844.464] [email protected]()
[2365844.663]  -> [email protected]_registry(new id wl_registry@46)
[2365844.669]  -> [email protected](new id wl_callback@41)

colinmarc avatar Nov 30 '23 13:11 colinmarc

fwiw, I am successfully developing a game with bevy 0.12 on sway (wayland). I have not seen this issue myself.

I use a Intel iGPU tho.

2024-01-17T09:14:03.241621Z  INFO bevy_winit::system: Creating new window "bevy-game" (0v0)
2024-01-17T09:14:03.243286Z ERROR log: XDG Settings Portal did not return response in time: timeout: 100ms, key: color-scheme
2024-01-17T09:14:03.309028Z  INFO bevy_render::renderer: AdapterInfo { name: "Intel(R) Graphics (RPL-S)", vendor: 32902, device: 42880, device_type: IntegratedGpu, driver: "Intel open-source Mesa driver", driver_info: "Mesa 23.3.3-arch1.1", backend: Vulkan }

Compiled and successfully ran the example from https://github.com/bevyengine/bevy/issues/10817#issue-2018653023

20240117_10h25m48s_grim

martinlindhe avatar Jan 17 '24 09:01 martinlindhe

Hey folks. I ran into this one myself and had some additional details to add.

  1. I have two machines I work on, a desktop and laptop. The issue was only occurring on the laptop.
  2. Both machines are built from the same Nix config so they have identical packages installed.
  3. Both machines are AMD CPU & GPU and use the same Mesa RADV driver.

On my laptop I was seeing the exact same error as the op.

get_physical_device_surface_formats: ERROR_SURFACE_LOST_KHR

I tried switching to the amdvlk driver to see if it would give me the same issue and I got a different error:

2024-02-18T10:32:39.895011Z  INFO bevy_winit::system: Creating new window "2048: Two-oh-four-eight" (0v0)
2024-02-18T10:32:40.059050Z  INFO bevy_render::renderer: AdapterInfo { name: "AMD Radeon Graphics", vendor: 4098, device: 5567, device
_type: IntegratedGpu, driver: "AMD open-source driver", driver_info: "2023.Q4.1 (LLPC)", backend: Vulkan }
2024-02-18T10:32:40.394415Z  INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Linux 23.11 NixO
S", kernel: "6.7.4", cpu: "AMD Ryzen 7 7840U w/ Radeon  780M Graphics", core_count: "8", memory: "30.6 GiB" }
wl_surface@19: error 2: Buffer size (898x1175) is not divisible by scale (2)

This wl_surface@19: error 2: Buffer size (898x1175) is not divisible by scale (2) struck me as interesting as my laptop does have an unusual resolution: 2256x1504 which I then scale to 1.25.

I turned my scaling back to 1.0 and the issue promptly resolved itself. I switched back to the RADV driver and it was also working at 1.0 scaling with that driver as well.

To confirm I enabled scaling at 1.25 again and the issue returned.

Not sure if this info helps but it could be an underlying issue with fractional scaling.

@colinmarc can you confirm if you were using display scaling on your machine?

DewaldV avatar Feb 18 '24 11:02 DewaldV

Yes, I run at 2x, and given that it's a tiling WM, the resolution could definitely have been something nonstandard.

colinmarc avatar Feb 18 '24 12:02 colinmarc

And I'm not using fractional scaling, so +1 for your finds @DewaldV . Away from home so cannot try to reproduce currently.

martinlindhe avatar Feb 18 '24 21:02 martinlindhe

I wanted to see if I could reproduce the issue under different circumstances, here are some of my findings. I'm running Sway on NixOS with AMD hardware using the RADV driver.

On my laptop, at 1.25 scaling I get this error when running the code in this thread above.

     Running `target/debug/latency-test`
2024-02-20T20:26:49.048851Z  INFO bevy_winit::system: Creating new window "Latency Test" (0v0)
2024-02-20T20:26:49.110620Z  INFO bevy_render::renderer: AdapterInfo { name: "AMD Radeon Graphics (RADV GFX1103_R1)", vendor: 4098, device: 5567, device_type: IntegratedGpu, driver: "radv", driver_info: "Mesa 23.1.9", backend: Vulkan }
2024-02-20T20:26:49.471163Z  INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Linux 23.11 NixOS", kernel: "6.7.4", cpu: "AMD Ryzen 7 7840U w/ Radeon  780M Graphics", core_count: "8", memory: "30.6 GiB" }
2024-02-20T20:26:49.630205Z ERROR log: get_physical_device_surface_formats: ERROR_SURFACE_LOST_KHR
thread 'main' panicked at /home/dewaldv/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-0.17.2/src/backend/direct.rs:771:18:
Error in Surface::configure: Validation Error

Caused by:
    Requested format Bgra8UnormSrgb is not in list of supported formats: []

I think @colinmarc was on to something when he talked about "resolution being non-standard in tiling WMs". My fractional scaling setting affects it but I think it actually has more to do with the size of window that it spawns.

If I switch my container layout to tabbed and launch with cargo run it works as expected even on 1.25 scaling. If I switch back to horizontal layout while the app is running then it keeps running fine but will crash on startup if I exit and restart with the error above. :smile:

It could also be related to AMD and the Mesa driver. We're both using AMD Cards and the RADV driver, and I see a different error with the amdvlk driver that mentions resolution.

If I switch to the amdvlk driver while keeping the same odd-sized window I get:

     Running `target/debug/latency-test`
2024-02-20T20:40:53.636243Z  INFO bevy_winit::system: Creating new window "Latency Test" (0v0)
2024-02-20T20:40:53.796185Z  INFO bevy_render::renderer: AdapterInfo { name: "AMD Radeon Graphics", vendor: 4098, device: 5567, device_type: IntegratedGpu, driver: "AMD open-source driver", driver_info: "2023.Q4.1 (LLPC)", backend: Vulkan }
2024-02-20T20:40:54.131232Z  INFO bevy_diagnostic::system_information_diagnostics_plugin::internal: SystemInfo { os: "Linux 23.11 NixOS", kernel: "6.7.4", cpu: "AMD Ryzen 7 7840U w/ Radeon  780M Graphics", core_count: "8", memory: "30.6 GiB" }
wl_surface@19: error 2: Buffer size (898x1175) is not divisible by scale (2)
warning: queue 0x55c8235215c0 destroyed while proxies still attached:
  wl_registry@49 still attached
warning: queue 0x55c8235a2800 destroyed while proxies still attached:
  wl_registry@52 still attached
thread 'main' panicked at /home/dewaldv/.cargo/registry/src/index.crates.io-6f17d22bba15001f/wgpu-0.17.2/src/backend/direct.rs:771:18:
Error in Surface::configure: Validation Error

Caused by:
    Parent device is lost

note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Encountered a panic in system `bevy_render::view::window::prepare_windows`!

Which then shows the wl_surface@19: error 2: Buffer size (898x1175) is not divisible by scale (2) error.

Again if I switch to a tabbed layout and run the app it launches just fine as the resolution is now even and divisible by 2.

Switching back to RADV gets me back to this error:

ERROR log: get_physical_device_surface_formats: ERROR_SURFACE_LOST_KHR

So it looks like the actual thing causing the error is the window size but with the RADV driver it gives an odd error while with the amdvlk we get an error that correctly identifies the window size as the issue.

I've not dug into the code at all yet, I was just seeing what conditions cause the error to occur and whether I could launch it in different scenarios.

Hope this helps!

DewaldV avatar Feb 20 '24 20:02 DewaldV