├── .builds ├── build.yml ├── check-musl.yml ├── test.yml └── unit-tests.yml ├── .github └── workflows │ ├── check-spv.yml │ ├── rustfmt.yml │ └── toml-spec.yml ├── .gitignore ├── .gitmodules ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── algorithms ├── Cargo.toml └── src │ ├── lib.rs │ ├── qoi.rs │ ├── rect.rs │ ├── rect │ └── region.rs │ └── windows.rs ├── compile-shaders ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── compile │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── core │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ └── main.rs └── shaderc-sys │ ├── Cargo.toml │ ├── build.rs │ └── src │ └── lib.rs ├── deploy-notes.md ├── docs ├── config.md ├── features.md ├── setup.md └── window-and-client-rules.md ├── etc ├── jay-portals.conf ├── jay.desktop └── jay.portal ├── jay-config ├── Cargo.toml └── src │ ├── _private.rs │ ├── _private │ ├── client.rs │ ├── ipc.rs │ └── logging.rs │ ├── client.rs │ ├── embedded.rs │ ├── exec.rs │ ├── input.rs │ ├── input │ ├── acceleration.rs │ ├── capability.rs │ └── clickmethod.rs │ ├── io.rs │ ├── keyboard │ ├── mod.rs │ ├── mods.rs │ └── syms.rs │ ├── lib.rs │ ├── logging.rs │ ├── macros.rs │ ├── status.rs │ ├── tasks.rs │ ├── theme.rs │ ├── timer.rs │ ├── video.rs │ ├── window.rs │ ├── workspace.rs │ └── xwayland.rs ├── release-notes.md ├── rustfmt.toml ├── src ├── acceptor.rs ├── allocator.rs ├── async_engine.rs ├── async_engine │ ├── ae_task.rs │ └── ae_yield.rs ├── backend.rs ├── backend │ └── transaction.rs ├── backends.rs ├── backends │ ├── dummy.rs │ ├── metal.rs │ ├── metal │ │ ├── input.rs │ │ ├── monitor.rs │ │ ├── present.rs │ │ ├── transaction.rs │ │ └── video.rs │ └── x.rs ├── bridge.c ├── bugs.rs ├── cli.rs ├── cli │ ├── clients.rs │ ├── color.rs │ ├── color_management.rs │ ├── damage_tracking.rs │ ├── duration.rs │ ├── generate.rs │ ├── idle.rs │ ├── input.rs │ ├── log.rs │ ├── quit.rs │ ├── randr.rs │ ├── reexec.rs │ ├── run_privileged.rs │ ├── screenshot.rs │ ├── seat_test.rs │ ├── set_log_level.rs │ ├── tree.rs │ ├── unlock.rs │ ├── version.rs │ └── xwayland.rs ├── client.rs ├── client │ ├── error.rs │ ├── objects.rs │ └── tasks.rs ├── clientmem.rs ├── cmm.rs ├── cmm │ ├── cmm_description.rs │ ├── cmm_eotf.rs │ ├── cmm_luminance.rs │ ├── cmm_manager.rs │ ├── cmm_primaries.rs │ ├── cmm_tests.rs │ └── cmm_transform.rs ├── compositor.rs ├── config.rs ├── config │ └── handler.rs ├── cpu_worker.rs ├── cpu_worker │ ├── jobs.rs │ ├── jobs │ │ ├── img_copy.rs │ │ └── read_write.rs │ └── tests.rs ├── criteria.rs ├── criteria │ ├── clm.rs │ ├── clm │ │ ├── clm_matchers.rs │ │ └── clm_matchers │ │ │ ├── clmm_is_xwayland.rs │ │ │ ├── clmm_pid.rs │ │ │ ├── clmm_sandboxed.rs │ │ │ ├── clmm_string.rs │ │ │ └── clmm_uid.rs │ ├── crit_graph.rs │ ├── crit_graph │ │ ├── crit_downstream.rs │ │ ├── crit_middle.rs │ │ ├── crit_root.rs │ │ ├── crit_target.rs │ │ └── crit_upstream.rs │ ├── crit_leaf.rs │ ├── crit_matchers.rs │ ├── crit_matchers │ │ ├── critm_any_or_all.rs │ │ ├── critm_constant.rs │ │ ├── critm_exactly.rs │ │ └── critm_string.rs │ ├── crit_per_target_data.rs │ ├── tlm.rs │ └── tlm │ │ ├── tlm_matchers.rs │ │ └── tlm_matchers │ │ ├── tlmm_client.rs │ │ ├── tlmm_content_type.rs │ │ ├── tlmm_floating.rs │ │ ├── tlmm_fullscreen.rs │ │ ├── tlmm_just_mapped.rs │ │ ├── tlmm_kind.rs │ │ ├── tlmm_seat_focus.rs │ │ ├── tlmm_string.rs │ │ ├── tlmm_urgent.rs │ │ └── tlmm_visible.rs ├── cursor.rs ├── cursor_user.rs ├── damage.rs ├── dbus.rs ├── dbus │ ├── auth.rs │ ├── dynamic_type.rs │ ├── formatter.rs │ ├── holder.rs │ ├── incoming.rs │ ├── outgoing.rs │ ├── parser.rs │ ├── property.rs │ ├── socket.rs │ └── types.rs ├── drm_feedback.rs ├── edid.rs ├── ei.rs ├── ei │ ├── ei_acceptor.rs │ ├── ei_client.rs │ ├── ei_client │ │ ├── ei_error.rs │ │ ├── ei_objects.rs │ │ └── ei_tasks.rs │ ├── ei_ifs.rs │ ├── ei_ifs │ │ ├── ei_button.rs │ │ ├── ei_callback.rs │ │ ├── ei_connection.rs │ │ ├── ei_device.rs │ │ ├── ei_handshake.rs │ │ ├── ei_keyboard.rs │ │ ├── ei_pingpong.rs │ │ ├── ei_pointer.rs │ │ ├── ei_pointer_absolute.rs │ │ ├── ei_scroll.rs │ │ ├── ei_seat.rs │ │ └── ei_touchscreen.rs │ └── ei_object.rs ├── fixed.rs ├── forker.rs ├── forker │ └── io.rs ├── format.rs ├── gfx_api.rs ├── gfx_apis.rs ├── gfx_apis │ ├── gl.rs │ ├── gl │ │ ├── egl.rs │ │ ├── egl │ │ │ ├── context.rs │ │ │ ├── display.rs │ │ │ ├── image.rs │ │ │ └── sys.rs │ │ ├── ext.rs │ │ ├── gl.rs │ │ ├── gl │ │ │ ├── frame_buffer.rs │ │ │ ├── program.rs │ │ │ ├── render_buffer.rs │ │ │ ├── shader.rs │ │ │ ├── sys.rs │ │ │ └── texture.rs │ │ ├── proc.rs │ │ ├── renderer.rs │ │ ├── renderer │ │ │ ├── context.rs │ │ │ ├── framebuffer.rs │ │ │ ├── image.rs │ │ │ ├── sync.rs │ │ │ └── texture.rs │ │ └── shaders │ │ │ ├── fill.frag.glsl │ │ │ ├── fill.vert.glsl │ │ │ ├── tex.frag.glsl │ │ │ └── tex.vert.glsl │ ├── vulkan.rs │ └── vulkan │ │ ├── allocator.rs │ │ ├── blend_buffer.rs │ │ ├── bo_allocator.rs │ │ ├── buffer_cache.rs │ │ ├── command.rs │ │ ├── descriptor.rs │ │ ├── descriptor_buffer.rs │ │ ├── device.rs │ │ ├── dmabuf_buffer.rs │ │ ├── eotfs.rs │ │ ├── fence.rs │ │ ├── format.rs │ │ ├── image.rs │ │ ├── instance.rs │ │ ├── pipeline.rs │ │ ├── renderer.rs │ │ ├── sampler.rs │ │ ├── semaphore.rs │ │ ├── shaders.rs │ │ ├── shaders │ │ ├── eotfs.glsl │ │ ├── fill.common.glsl │ │ ├── fill.frag │ │ ├── fill.vert │ │ ├── frag_spec_const.glsl │ │ ├── legacy │ │ │ ├── fill.common.glsl │ │ │ ├── fill.frag │ │ │ ├── fill.vert │ │ │ ├── tex.common.glsl │ │ │ ├── tex.frag │ │ │ └── tex.vert │ │ ├── out.common.glsl │ │ ├── out.frag │ │ ├── out.vert │ │ ├── tex.common.glsl │ │ ├── tex.frag │ │ ├── tex.vert │ │ └── tex_set.glsl │ │ ├── shaders_bin │ │ ├── fill.frag.spv │ │ ├── fill.vert.spv │ │ ├── legacy_fill.frag.spv │ │ ├── legacy_fill.vert.spv │ │ ├── legacy_tex.frag.spv │ │ ├── legacy_tex.vert.spv │ │ ├── out.frag.spv │ │ ├── out.vert.spv │ │ ├── tex.frag.spv │ │ └── tex.vert.spv │ │ ├── shaders_hash.txt │ │ ├── shm_image.rs │ │ ├── staging.rs │ │ └── transfer.rs ├── globals.rs ├── icons.rs ├── ifs.rs ├── ifs │ ├── color_management.rs │ ├── color_management │ │ ├── wp_color_management_output_v1.rs │ │ ├── wp_color_management_surface_feedback_v1.rs │ │ ├── wp_color_manager_v1.rs │ │ ├── wp_image_description_creator_icc_v1.rs │ │ ├── wp_image_description_creator_params_v1.rs │ │ ├── wp_image_description_info_v1.rs │ │ └── wp_image_description_v1.rs │ ├── ext_foreign_toplevel_handle_v1.rs │ ├── ext_foreign_toplevel_image_capture_source_manager_v1.rs │ ├── ext_foreign_toplevel_list_v1.rs │ ├── ext_idle_notification_v1.rs │ ├── ext_idle_notifier_v1.rs │ ├── ext_image_capture_source_v1.rs │ ├── ext_image_copy.rs │ ├── ext_image_copy │ │ ├── ext_image_copy_capture_cursor_session_v1.rs │ │ ├── ext_image_copy_capture_frame_v1.rs │ │ ├── ext_image_copy_capture_manager_v1.rs │ │ └── ext_image_copy_capture_session_v1.rs │ ├── ext_output_image_capture_source_manager_v1.rs │ ├── ext_session_lock_manager_v1.rs │ ├── ext_session_lock_v1.rs │ ├── head_management.rs │ ├── head_management │ │ ├── head_management_macros.rs │ │ ├── jay_head_error_v1.rs │ │ ├── jay_head_ext.rs │ │ ├── jay_head_ext │ │ │ ├── jay_head_ext_brightness_info_v1.rs │ │ │ ├── jay_head_ext_brightness_setter_v1.rs │ │ │ ├── jay_head_ext_compositor_space_enabler_v1.rs │ │ │ ├── jay_head_ext_compositor_space_info_v1.rs │ │ │ ├── jay_head_ext_compositor_space_positioner_v1.rs │ │ │ ├── jay_head_ext_compositor_space_scaler_v1.rs │ │ │ ├── jay_head_ext_compositor_space_transformer_v1.rs │ │ │ ├── jay_head_ext_connector_info_v1.rs │ │ │ ├── jay_head_ext_core_info_v1.rs │ │ │ ├── jay_head_ext_drm_color_space_info_v1.rs │ │ │ ├── jay_head_ext_drm_color_space_setter_v1.rs │ │ │ ├── jay_head_ext_format_info_v1.rs │ │ │ ├── jay_head_ext_format_setter_v1.rs │ │ │ ├── jay_head_ext_jay_tearing_mode_info_v1.rs │ │ │ ├── jay_head_ext_jay_tearing_mode_setter_v1.rs │ │ │ ├── jay_head_ext_jay_vrr_mode_info_v1.rs │ │ │ ├── jay_head_ext_jay_vrr_mode_setter_v1.rs │ │ │ ├── jay_head_ext_mode_info_v1.rs │ │ │ ├── jay_head_ext_mode_setter_v1.rs │ │ │ ├── jay_head_ext_non_desktop_info_v1.rs │ │ │ ├── jay_head_ext_non_desktop_override_v1.rs │ │ │ ├── jay_head_ext_physical_display_info_v1.rs │ │ │ ├── jay_head_ext_tearing_state_v1.rs │ │ │ └── jay_head_ext_vrr_state_v1.rs │ │ ├── jay_head_manager_session_v1.rs │ │ ├── jay_head_manager_v1.rs │ │ ├── jay_head_transaction_result_v1.rs │ │ └── jay_head_v1.rs │ ├── ipc.rs │ ├── ipc │ │ ├── data_control.rs │ │ ├── data_control │ │ │ ├── ext_data_control_device_v1.rs │ │ │ ├── ext_data_control_manager_v1.rs │ │ │ ├── ext_data_control_offer_v1.rs │ │ │ ├── ext_data_control_source_v1.rs │ │ │ ├── private.rs │ │ │ ├── zwlr_data_control_device_v1.rs │ │ │ ├── zwlr_data_control_manager_v1.rs │ │ │ ├── zwlr_data_control_offer_v1.rs │ │ │ └── zwlr_data_control_source_v1.rs │ │ ├── wl_data_device.rs │ │ ├── wl_data_device_manager.rs │ │ ├── wl_data_offer.rs │ │ ├── wl_data_source.rs │ │ ├── x_data_device.rs │ │ ├── x_data_offer.rs │ │ ├── x_data_source.rs │ │ ├── zwp_primary_selection_device_manager_v1.rs │ │ ├── zwp_primary_selection_device_v1.rs │ │ ├── zwp_primary_selection_offer_v1.rs │ │ └── zwp_primary_selection_source_v1.rs │ ├── jay_client_query.rs │ ├── jay_color_management.rs │ ├── jay_compositor.rs │ ├── jay_damage_tracking.rs │ ├── jay_ei_session.rs │ ├── jay_ei_session_builder.rs │ ├── jay_idle.rs │ ├── jay_input.rs │ ├── jay_log_file.rs │ ├── jay_output.rs │ ├── jay_pointer.rs │ ├── jay_randr.rs │ ├── jay_reexec.rs │ ├── jay_render_ctx.rs │ ├── jay_screencast.rs │ ├── jay_screenshot.rs │ ├── jay_seat_events.rs │ ├── jay_select_toplevel.rs │ ├── jay_select_workspace.rs │ ├── jay_toplevel.rs │ ├── jay_tray_v1.rs │ ├── jay_tree_query.rs │ ├── jay_workspace.rs │ ├── jay_workspace_watcher.rs │ ├── jay_xwayland.rs │ ├── org_kde_kwin_server_decoration.rs │ ├── org_kde_kwin_server_decoration_manager.rs │ ├── wl_buffer.rs │ ├── wl_callback.rs │ ├── wl_compositor.rs │ ├── wl_display.rs │ ├── wl_drm.rs │ ├── wl_fixes.rs │ ├── wl_output.rs │ ├── wl_output │ │ └── removed_output.rs │ ├── wl_region.rs │ ├── wl_registry.rs │ ├── wl_seat.rs │ ├── wl_seat │ │ ├── event_handling.rs │ │ ├── ext_transient_seat_manager_v1.rs │ │ ├── ext_transient_seat_v1.rs │ │ ├── gesture_owner.rs │ │ ├── kb_owner.rs │ │ ├── pointer_owner.rs │ │ ├── tablet.rs │ │ ├── tablet │ │ │ ├── pad.rs │ │ │ ├── pad_owner.rs │ │ │ ├── tablet_bindings.rs │ │ │ ├── tool.rs │ │ │ ├── tool_owner.rs │ │ │ ├── zwp_tablet_manager_v2.rs │ │ │ ├── zwp_tablet_pad_dial_v2.rs │ │ │ ├── zwp_tablet_pad_group_v2.rs │ │ │ ├── zwp_tablet_pad_ring_v2.rs │ │ │ ├── zwp_tablet_pad_strip_v2.rs │ │ │ ├── zwp_tablet_pad_v2.rs │ │ │ ├── zwp_tablet_seat_v2.rs │ │ │ ├── zwp_tablet_tool_v2.rs │ │ │ └── zwp_tablet_v2.rs │ │ ├── text_input.rs │ │ ├── text_input │ │ │ ├── simple_im.rs │ │ │ ├── zwp_input_method_keyboard_grab_v2.rs │ │ │ ├── zwp_input_method_manager_v2.rs │ │ │ ├── zwp_input_method_v2.rs │ │ │ ├── zwp_text_input_manager_v3.rs │ │ │ └── zwp_text_input_v3.rs │ │ ├── touch_owner.rs │ │ ├── wl_keyboard.rs │ │ ├── wl_pointer.rs │ │ ├── wl_touch.rs │ │ ├── wp_pointer_warp_v1.rs │ │ ├── zwp_pointer_constraints_v1.rs │ │ ├── zwp_pointer_constraints_v1 │ │ │ ├── zwp_confined_pointer_v1.rs │ │ │ └── zwp_locked_pointer_v1.rs │ │ ├── zwp_pointer_gesture_hold_v1.rs │ │ ├── zwp_pointer_gesture_pinch_v1.rs │ │ ├── zwp_pointer_gesture_swipe_v1.rs │ │ ├── zwp_pointer_gestures_v1.rs │ │ ├── zwp_relative_pointer_manager_v1.rs │ │ ├── zwp_relative_pointer_v1.rs │ │ ├── zwp_virtual_keyboard_manager_v1.rs │ │ └── zwp_virtual_keyboard_v1.rs │ ├── wl_shm.rs │ ├── wl_shm_pool.rs │ ├── wl_subcompositor.rs │ ├── wl_surface.rs │ ├── wl_surface │ │ ├── commit_timeline.rs │ │ ├── cursor.rs │ │ ├── dnd_icon.rs │ │ ├── ext_session_lock_surface_v1.rs │ │ ├── tray.rs │ │ ├── tray │ │ │ └── jay_tray_item_v1.rs │ │ ├── wl_subsurface.rs │ │ ├── wp_alpha_modifier_surface_v1.rs │ │ ├── wp_color_management_surface_v1.rs │ │ ├── wp_commit_timer_v1.rs │ │ ├── wp_fifo_v1.rs │ │ ├── wp_fractional_scale_v1.rs │ │ ├── wp_linux_drm_syncobj_surface_v1.rs │ │ ├── wp_tearing_control_v1.rs │ │ ├── wp_viewport.rs │ │ ├── x_surface.rs │ │ ├── x_surface │ │ │ ├── xwayland_surface_v1.rs │ │ │ └── xwindow.rs │ │ ├── xdg_surface.rs │ │ ├── xdg_surface │ │ │ ├── xdg_popup.rs │ │ │ ├── xdg_toplevel.rs │ │ │ └── xdg_toplevel │ │ │ │ └── xdg_dialog_v1.rs │ │ ├── xwayland_shell_v1.rs │ │ ├── zwlr_layer_surface_v1.rs │ │ ├── zwp_idle_inhibitor_v1.rs │ │ └── zwp_input_popup_surface_v2.rs │ ├── wlr_output_manager.rs │ ├── wlr_output_manager │ │ ├── zwlr_output_configuration_head.rs │ │ ├── zwlr_output_configuration_v1.rs │ │ ├── zwlr_output_head_v1.rs │ │ ├── zwlr_output_manager_v1.rs │ │ └── zwlr_output_mode_v1.rs │ ├── workspace_manager.rs │ ├── workspace_manager │ │ ├── ext_workspace_group_handle_v1.rs │ │ ├── ext_workspace_handle_v1.rs │ │ └── ext_workspace_manager_v1.rs │ ├── wp_alpha_modifier_v1.rs │ ├── wp_commit_timing_manager_v1.rs │ ├── wp_content_type_manager_v1.rs │ ├── wp_content_type_v1.rs │ ├── wp_cursor_shape_device_v1.rs │ ├── wp_cursor_shape_manager_v1.rs │ ├── wp_drm_lease_connector_v1.rs │ ├── wp_drm_lease_device_v1.rs │ ├── wp_drm_lease_device_v1 │ │ └── removed_device.rs │ ├── wp_drm_lease_request_v1.rs │ ├── wp_drm_lease_v1.rs │ ├── wp_fifo_manager_v1.rs │ ├── wp_fractional_scale_manager_v1.rs │ ├── wp_linux_drm_syncobj_manager_v1.rs │ ├── wp_linux_drm_syncobj_timeline_v1.rs │ ├── wp_presentation.rs │ ├── wp_presentation_feedback.rs │ ├── wp_security_context_manager_v1.rs │ ├── wp_security_context_v1.rs │ ├── wp_single_pixel_buffer_manager_v1.rs │ ├── wp_tearing_control_manager_v1.rs │ ├── wp_viewporter.rs │ ├── xdg_activation_token_v1.rs │ ├── xdg_activation_v1.rs │ ├── xdg_positioner.rs │ ├── xdg_toplevel_drag_manager_v1.rs │ ├── xdg_toplevel_drag_v1.rs │ ├── xdg_toplevel_tag_manager_v1.rs │ ├── xdg_wm_base.rs │ ├── xdg_wm_dialog_v1.rs │ ├── zwlr_foreign_toplevel_handle_v1.rs │ ├── zwlr_foreign_toplevel_manager_v1.rs │ ├── zwlr_layer_shell_v1.rs │ ├── zwlr_screencopy_frame_v1.rs │ ├── zwlr_screencopy_manager_v1.rs │ ├── zwp_idle_inhibit_manager_v1.rs │ ├── zwp_linux_buffer_params_v1.rs │ ├── zwp_linux_dmabuf_feedback_v1.rs │ ├── zwp_linux_dmabuf_v1.rs │ ├── zxdg_decoration_manager_v1.rs │ ├── zxdg_output_manager_v1.rs │ ├── zxdg_output_v1.rs │ └── zxdg_toplevel_decoration_v1.rs ├── io_uring.rs ├── io_uring │ ├── debounce.rs │ ├── ops.rs │ ├── ops │ │ ├── accept.rs │ │ ├── async_cancel.rs │ │ ├── connect.rs │ │ ├── poll.rs │ │ ├── poll_external.rs │ │ ├── read_write.rs │ │ ├── read_write_no_cancel.rs │ │ ├── read_write_no_cancel │ │ │ └── tests.rs │ │ ├── recvmsg.rs │ │ ├── sendmsg.rs │ │ ├── timeout.rs │ │ ├── timeout_external.rs │ │ └── timeout_link.rs │ ├── pending_result.rs │ └── sys.rs ├── it.rs ├── it │ ├── test_backend.rs │ ├── test_client.rs │ ├── test_config.rs │ ├── test_error.rs │ ├── test_gfx_api.rs │ ├── test_ifs.rs │ ├── test_ifs │ │ ├── test_alpha_modifier.rs │ │ ├── test_alpha_modifier_surface.rs │ │ ├── test_buffer.rs │ │ ├── test_callback.rs │ │ ├── test_compositor.rs │ │ ├── test_content_type.rs │ │ ├── test_content_type_manager.rs │ │ ├── test_cursor_shape_device.rs │ │ ├── test_cursor_shape_manager.rs │ │ ├── test_data_control_device.rs │ │ ├── test_data_control_manager.rs │ │ ├── test_data_control_offer.rs │ │ ├── test_data_control_source.rs │ │ ├── test_data_device.rs │ │ ├── test_data_device_manager.rs │ │ ├── test_data_offer.rs │ │ ├── test_data_source.rs │ │ ├── test_display.rs │ │ ├── test_dmabuf.rs │ │ ├── test_dmabuf_feedback.rs │ │ ├── test_ext_foreign_toplevel_handle.rs │ │ ├── test_ext_foreign_toplevel_list.rs │ │ ├── test_fifo_manager.rs │ │ ├── test_input_method.rs │ │ ├── test_input_method_keyboard_grab.rs │ │ ├── test_input_method_manager.rs │ │ ├── test_input_popup_surface.rs │ │ ├── test_jay_compositor.rs │ │ ├── test_keyboard.rs │ │ ├── test_pointer.rs │ │ ├── test_pointer_warp.rs │ │ ├── test_region.rs │ │ ├── test_registry.rs │ │ ├── test_screenshot.rs │ │ ├── test_seat.rs │ │ ├── test_shm.rs │ │ ├── test_shm_buffer.rs │ │ ├── test_shm_pool.rs │ │ ├── test_single_pixel_buffer_manager.rs │ │ ├── test_subcompositor.rs │ │ ├── test_subsurface.rs │ │ ├── test_surface.rs │ │ ├── test_syncobj_manager.rs │ │ ├── test_syncobj_surface.rs │ │ ├── test_syncobj_timeline.rs │ │ ├── test_text_input.rs │ │ ├── test_text_input_manager.rs │ │ ├── test_toplevel_drag.rs │ │ ├── test_toplevel_drag_manager.rs │ │ ├── test_viewport.rs │ │ ├── test_viewporter.rs │ │ ├── test_virtual_keyboard.rs │ │ ├── test_virtual_keyboard_manager.rs │ │ ├── test_wl_fixes.rs │ │ ├── test_xdg_activation.rs │ │ ├── test_xdg_activation_token.rs │ │ ├── test_xdg_base.rs │ │ ├── test_xdg_surface.rs │ │ └── test_xdg_toplevel.rs │ ├── test_logger.rs │ ├── test_macros.rs │ ├── test_mem.rs │ ├── test_object.rs │ ├── test_transport.rs │ ├── test_utils.rs │ ├── test_utils │ │ ├── test_container_node_ext.rs │ │ ├── test_expected_event.rs │ │ ├── test_object_ext.rs │ │ ├── test_ouput_node_ext.rs │ │ ├── test_surface_ext.rs │ │ ├── test_toplevel_node_ext.rs │ │ ├── test_window.rs │ │ └── test_workspace_node_ext.rs │ ├── testrun.rs │ ├── tests.rs │ └── tests │ │ ├── t0001_shm_formats.rs │ │ ├── t0002_window.rs │ │ ├── t0003_multi_window.rs │ │ ├── t0004_quit.rs │ │ ├── t0005_create_seat.rs │ │ ├── t0006_region.rs │ │ ├── t0007_subsurface.rs │ │ ├── t0007_subsurface │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0008_map_focus.rs │ │ ├── t0009_tab_focus.rs │ │ ├── t0010_fullscreen_focus.rs │ │ ├── t0011_set_keymap.rs │ │ ├── t0012_subsurface_focus.rs │ │ ├── t0013_graphics_initialized.rs │ │ ├── t0014_container_scroll_focus.rs │ │ ├── t0015_scroll_partial.rs │ │ ├── t0016_scroll_ws.rs │ │ ├── t0017_remove_unused_ws.rs │ │ ├── t0018_click_to_active_ws.rs │ │ ├── t0019_natural_scrolling.rs │ │ ├── t0020_surface_offset.rs │ │ ├── t0020_surface_offset │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0021_preferred_buffer_scale.rs │ │ ├── t0022_toplevel_suspended.rs │ │ ├── t0023_xdg_activation.rs │ │ ├── t0023_xdg_activation │ │ └── screenshot_1.qoi │ │ ├── t0024_foreign_toplevel_list.rs │ │ ├── t0025_dnd_focus_change.rs │ │ ├── t0026_output_transform.rs │ │ ├── t0026_output_transform │ │ └── screenshot_1.qoi │ │ ├── t0027_input_region.rs │ │ ├── t0028_top_level_restacking.rs │ │ ├── t0028_top_level_restacking │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0029_double_click_float.rs │ │ ├── t0029_double_click_float │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0030_cursor_shape.rs │ │ ├── t0031_syncobj.rs │ │ ├── t0032_data_control.rs │ │ ├── t0033_float_size_memoization.rs │ │ ├── t0034_workspace_restoration.rs │ │ ├── t0035_scanout_feedback.rs │ │ ├── t0036_idle.rs │ │ ├── t0037_toplevel_drag.rs │ │ ├── t0037_toplevel_drag │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0038_subsurface_parent_state.rs │ │ ├── t0038_subsurface_parent_state │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0039_alpha_modifier.rs │ │ ├── t0039_alpha_modifier │ │ ├── screenshot_1.qoi │ │ └── screenshot_2.qoi │ │ ├── t0040_virtual_keyboard.rs │ │ ├── t0041_input_method.rs │ │ ├── t0041_input_method │ │ ├── screenshot_1.qoi │ │ ├── screenshot_2.qoi │ │ └── screenshot_3.qoi │ │ ├── t0042_toplevel_select.rs │ │ ├── t0042_toplevel_select │ │ ├── screenshot_1.qoi │ │ ├── screenshot_2.qoi │ │ ├── screenshot_3.qoi │ │ └── screenshot_4.qoi │ │ ├── t0043_destroy_registry.rs │ │ ├── t0044_stacked_focus.rs │ │ ├── t0045_content_type.rs │ │ ├── t0046_buffer_release.rs │ │ ├── t0047_surface_damage.rs │ │ ├── t0048_frame_callback.rs │ │ ├── t0049_surface_damage_backend.rs │ │ ├── t0050_fifo.rs │ │ ├── t0051_pointer_warp.rs │ │ └── t0052_bar.rs ├── kbvm.rs ├── keyboard.rs ├── keycodes.xkb ├── keymap.xkb ├── leaks.rs ├── libinput.rs ├── libinput │ ├── consts.rs │ ├── device.rs │ ├── event.rs │ └── sys.rs ├── logger.rs ├── logind.rs ├── macros.rs ├── main.rs ├── object.rs ├── output_schedule.rs ├── pango.rs ├── pango │ └── consts.rs ├── pipewire.rs ├── pipewire │ ├── pw_con.rs │ ├── pw_formatter.rs │ ├── pw_ifs.rs │ ├── pw_ifs │ │ ├── pw_client.rs │ │ ├── pw_client_node.rs │ │ ├── pw_core.rs │ │ └── pw_registry.rs │ ├── pw_mem.rs │ ├── pw_object.rs │ ├── pw_parser.rs │ ├── pw_pod.rs │ └── pw_pod │ │ └── pw_debug.rs ├── portal.rs ├── portal │ ├── ptl_display.rs │ ├── ptl_remote_desktop.rs │ ├── ptl_remote_desktop │ │ └── remote_desktop_gui.rs │ ├── ptl_render_ctx.rs │ ├── ptl_screencast.rs │ ├── ptl_screencast │ │ └── screencast_gui.rs │ ├── ptl_session.rs │ ├── ptl_text.rs │ └── ptr_gui.rs ├── pr_caps.rs ├── rect.rs ├── rect │ ├── region.rs │ └── tests.rs ├── renderer.rs ├── renderer │ └── renderer_base.rs ├── scale.rs ├── screenshoter.rs ├── security_context_acceptor.rs ├── sighand.rs ├── state.rs ├── tasks.rs ├── tasks │ ├── backend.rs │ ├── connector.rs │ ├── const_clock.rs │ ├── drmdev.rs │ ├── hardware_cursor.rs │ ├── idle.rs │ ├── input_device.rs │ ├── slow_clients.rs │ └── udev_utils.rs ├── text.rs ├── theme.rs ├── time.rs ├── tools.rs ├── tools │ └── tool_client.rs ├── tracy.rs ├── tracy │ ├── tracy_impl.rs │ └── tracy_noop.rs ├── tree.rs ├── tree │ ├── container.rs │ ├── containing.rs │ ├── display.rs │ ├── float.rs │ ├── output.rs │ ├── placeholder.rs │ ├── stacked.rs │ ├── toplevel.rs │ ├── walker.rs │ └── workspace.rs ├── udev.rs ├── udmabuf.rs ├── user_session.rs ├── utils.rs ├── utils │ ├── activation_token.rs │ ├── array.rs │ ├── array_to_tuple.rs │ ├── asyncevent.rs │ ├── binary_search_map.rs │ ├── bindings.rs │ ├── bitfield.rs │ ├── bitflags.rs │ ├── buf.rs │ ├── buffd.rs │ ├── buffd │ │ ├── buf_in.rs │ │ ├── buf_out.rs │ │ ├── ei_formatter.rs │ │ ├── ei_parser.rs │ │ ├── formatter.rs │ │ └── parser.rs │ ├── bufio.rs │ ├── cell_ext.rs │ ├── clone3.rs │ ├── clonecell.rs │ ├── compat.rs │ ├── copyhashmap.rs │ ├── debug_fn.rs │ ├── double_buffered.rs │ ├── double_click_state.rs │ ├── errorfmt.rs │ ├── event_listener.rs │ ├── fdcloser.rs │ ├── free_list.rs │ ├── free_list │ │ └── tests.rs │ ├── geometric_decay.rs │ ├── gfx_api_ext.rs │ ├── hash_map_ext.rs │ ├── hex.rs │ ├── line_logger.rs │ ├── linkedlist.rs │ ├── log_on_drop.rs │ ├── mmap.rs │ ├── nice.rs │ ├── nonblock.rs │ ├── num_cpus.rs │ ├── numcell.rs │ ├── on_change.rs │ ├── on_drop.rs │ ├── on_drop_event.rs │ ├── once.rs │ ├── opaque.rs │ ├── opaque_cell.rs │ ├── opt.rs │ ├── option_ext.rs │ ├── ordered_float.rs │ ├── oserror.rs │ ├── page_size.rs │ ├── pending_serial.rs │ ├── pid_info.rs │ ├── pidfd_send_signal.rs │ ├── process_name.rs │ ├── ptr_ext.rs │ ├── queue.rs │ ├── rc_eq.rs │ ├── refcounted.rs │ ├── run_toplevel.rs │ ├── scroller.rs │ ├── smallmap.rs │ ├── stack.rs │ ├── string_ext.rs │ ├── syncqueue.rs │ ├── threshold_counter.rs │ ├── timer.rs │ ├── toplevel_identifier.rs │ ├── transform_ext.rs │ ├── tri.rs │ ├── unlink_on_drop.rs │ ├── vec_ext.rs │ ├── vecdeque_ext.rs │ ├── vecset.rs │ ├── vecstorage.rs │ ├── windows.rs │ └── xrd.rs ├── version.rs ├── video.rs ├── video │ ├── dmabuf.rs │ ├── drm.rs │ ├── drm │ │ ├── sync_obj.rs │ │ ├── sys.rs │ │ └── wait_for_sync_obj.rs │ └── gbm.rs ├── wheel.rs ├── wire.rs ├── wire_dbus.rs ├── wire_ei.rs ├── wire_xcon.rs ├── wl_usr.rs ├── wl_usr │ ├── usr_ifs.rs │ ├── usr_ifs │ │ ├── usr_jay_compositor.rs │ │ ├── usr_jay_ei_session.rs │ │ ├── usr_jay_ei_session_builder.rs │ │ ├── usr_jay_output.rs │ │ ├── usr_jay_pointer.rs │ │ ├── usr_jay_render_ctx.rs │ │ ├── usr_jay_screencast.rs │ │ ├── usr_jay_select_toplevel.rs │ │ ├── usr_jay_select_workspace.rs │ │ ├── usr_jay_toplevel.rs │ │ ├── usr_jay_workspace.rs │ │ ├── usr_jay_workspace_watcher.rs │ │ ├── usr_linux_buffer_params.rs │ │ ├── usr_linux_dmabuf.rs │ │ ├── usr_wl_buffer.rs │ │ ├── usr_wl_callback.rs │ │ ├── usr_wl_compositor.rs │ │ ├── usr_wl_display.rs │ │ ├── usr_wl_output.rs │ │ ├── usr_wl_pointer.rs │ │ ├── usr_wl_registry.rs │ │ ├── usr_wl_seat.rs │ │ ├── usr_wl_shm.rs │ │ ├── usr_wl_shm_pool.rs │ │ ├── usr_wl_surface.rs │ │ ├── usr_wlr_layer_shell.rs │ │ ├── usr_wlr_layer_surface.rs │ │ ├── usr_wp_fractional_scale.rs │ │ ├── usr_wp_fractional_scale_manager.rs │ │ ├── usr_wp_viewport.rs │ │ ├── usr_wp_viewporter.rs │ │ ├── usr_zwlr_screencopy_frame.rs │ │ └── usr_zwlr_screencopy_manager.rs │ └── usr_object.rs ├── xcon.rs ├── xcon │ ├── consts.rs │ ├── formatter.rs │ ├── incoming.rs │ ├── outgoing.rs │ ├── parser.rs │ ├── wire_type.rs │ └── xauthority.rs ├── xwayland.rs └── xwayland │ ├── xsocket.rs │ └── xwm.rs ├── static └── screenshot.png ├── toml-config ├── Cargo.toml └── src │ ├── config.rs │ ├── config │ ├── context.rs │ ├── error.rs │ ├── extractor.rs │ ├── keycodes.rs │ ├── keysyms.rs │ ├── parser.rs │ ├── parsers.rs │ ├── parsers │ │ ├── action.rs │ │ ├── actions.rs │ │ ├── capabilities.rs │ │ ├── client_match.rs │ │ ├── client_rule.rs │ │ ├── color.rs │ │ ├── color_management.rs │ │ ├── config.rs │ │ ├── connector.rs │ │ ├── connector_match.rs │ │ ├── content_type.rs │ │ ├── drm_device.rs │ │ ├── drm_device_match.rs │ │ ├── env.rs │ │ ├── exec.rs │ │ ├── float.rs │ │ ├── focus_history.rs │ │ ├── format.rs │ │ ├── gfx_api.rs │ │ ├── idle.rs │ │ ├── input.rs │ │ ├── input_match.rs │ │ ├── input_mode.rs │ │ ├── keymap.rs │ │ ├── libei.rs │ │ ├── log_level.rs │ │ ├── mark_id.rs │ │ ├── mode.rs │ │ ├── modified_keysym.rs │ │ ├── output.rs │ │ ├── output_match.rs │ │ ├── repeat_rate.rs │ │ ├── shortcuts.rs │ │ ├── simple_im.rs │ │ ├── status.rs │ │ ├── tearing.rs │ │ ├── theme.rs │ │ ├── tile_state.rs │ │ ├── ui_drag.rs │ │ ├── vrr.rs │ │ ├── window_match.rs │ │ ├── window_rule.rs │ │ ├── window_type.rs │ │ ├── workspace_display_order.rs │ │ └── xwayland.rs │ ├── spanned.rs │ └── value.rs │ ├── default-config.toml │ ├── lib.rs │ ├── rules.rs │ ├── shortcuts.rs │ ├── toml.rs │ └── toml │ ├── tests.rs │ ├── toml_lexer.rs │ ├── toml_parser.rs │ ├── toml_span.rs │ └── toml_value.rs ├── toml-spec ├── Cargo.toml ├── spec │ ├── spec.generated.json │ ├── spec.generated.md │ ├── spec.yaml │ └── template.md └── src │ ├── json_schema.rs │ ├── main.rs │ ├── markdown.rs │ └── types.rs ├── wire-dbus ├── org.freedesktop.DBus.Properties.txt ├── org.freedesktop.DBus.txt ├── org.freedesktop.impl.portal.RemoteDesktop.txt ├── org.freedesktop.impl.portal.Request.txt ├── org.freedesktop.impl.portal.ScreenCast.txt ├── org.freedesktop.impl.portal.Session.txt ├── org.freedesktop.login1.Manager.txt ├── org.freedesktop.login1.Seat.txt ├── org.freedesktop.login1.Session.txt └── org.freedesktop.systemd1.Manager.txt ├── wire-ei ├── ei_button.txt ├── ei_callback.txt ├── ei_connection.txt ├── ei_device.txt ├── ei_handshake.txt ├── ei_keyboard.txt ├── ei_pingpong.txt ├── ei_pointer.txt ├── ei_pointer_absolute.txt ├── ei_scroll.txt ├── ei_seat.txt └── ei_touchscreen.txt ├── wire-to-xml ├── Cargo.toml └── src │ └── main.rs ├── wire-xcon ├── composite.txt ├── dri3.txt ├── present.txt ├── render.txt ├── res.txt ├── xfixes.txt ├── xinput.txt ├── xkb.txt └── xproto.txt ├── wire ├── ext_data_control_device_v1.txt ├── ext_data_control_manager_v1.txt ├── ext_data_control_offer_v1.txt ├── ext_data_control_source_v1.txt ├── ext_foreign_toplevel_handle_v1.txt ├── ext_foreign_toplevel_image_capture_source_manager_v1.txt ├── ext_foreign_toplevel_list_v1.txt ├── ext_idle_notification_v1.txt ├── ext_idle_notifier_v1.txt ├── ext_image_capture_source_v1.txt ├── ext_image_copy_capture_cursor_session_v1.txt ├── ext_image_copy_capture_frame_v1.txt ├── ext_image_copy_capture_manager_v1.txt ├── ext_image_copy_capture_session_v1.txt ├── ext_output_image_capture_source_manager_v1.txt ├── ext_session_lock_manager_v1.txt ├── ext_session_lock_surface_v1.txt ├── ext_session_lock_v1.txt ├── ext_transient_seat_manager_v1.txt ├── ext_transient_seat_v1.txt ├── ext_workspace_group_handle_v1.txt ├── ext_workspace_handle_v1.txt ├── ext_workspace_manager_v1.txt ├── jay_client_query.txt ├── jay_color_management.txt ├── jay_compositor.txt ├── jay_damage_tracking.txt ├── jay_ei_session.txt ├── jay_ei_session_builder.txt ├── jay_head_error_v1.txt ├── jay_head_ext_brightness_info_v1.txt ├── jay_head_ext_brightness_setter_v1.txt ├── jay_head_ext_compositor_space_enabler_v1.txt ├── jay_head_ext_compositor_space_info_v1.txt ├── jay_head_ext_compositor_space_positioner_v1.txt ├── jay_head_ext_compositor_space_scaler_v1.txt ├── jay_head_ext_compositor_space_transformer_v1.txt ├── jay_head_ext_connector_info_v1.txt ├── jay_head_ext_core_info_v1.txt ├── jay_head_ext_drm_color_space_info_v1.txt ├── jay_head_ext_drm_color_space_setter_v1.txt ├── jay_head_ext_format_info_v1.txt ├── jay_head_ext_format_setter_v1.txt ├── jay_head_ext_jay_tearing_mode_info_v1.txt ├── jay_head_ext_jay_tearing_mode_setter_v1.txt ├── jay_head_ext_jay_vrr_mode_info_v1.txt ├── jay_head_ext_jay_vrr_mode_setter_v1.txt ├── jay_head_ext_mode_info_v1.txt ├── jay_head_ext_mode_setter_v1.txt ├── jay_head_ext_non_desktop_info_v1.txt ├── jay_head_ext_non_desktop_override_v1.txt ├── jay_head_ext_physical_display_info_v1.txt ├── jay_head_ext_tearing_state_v1.txt ├── jay_head_ext_vrr_state_v1.txt ├── jay_head_manager_ext_brightness_info_v1.txt ├── jay_head_manager_ext_brightness_setter_v1.txt ├── jay_head_manager_ext_compositor_space_enabler_v1.txt ├── jay_head_manager_ext_compositor_space_info_v1.txt ├── jay_head_manager_ext_compositor_space_positioner_v1.txt ├── jay_head_manager_ext_compositor_space_scaler_v1.txt ├── jay_head_manager_ext_compositor_space_transformer_v1.txt ├── jay_head_manager_ext_connector_info_v1.txt ├── jay_head_manager_ext_core_info_v1.txt ├── jay_head_manager_ext_drm_color_space_info_v1.txt ├── jay_head_manager_ext_drm_color_space_setter_v1.txt ├── jay_head_manager_ext_format_info_v1.txt ├── jay_head_manager_ext_format_setter_v1.txt ├── jay_head_manager_ext_jay_tearing_mode_info_v1.txt ├── jay_head_manager_ext_jay_tearing_mode_setter_v1.txt ├── jay_head_manager_ext_jay_vrr_mode_info_v1.txt ├── jay_head_manager_ext_jay_vrr_mode_setter_v1.txt ├── jay_head_manager_ext_mode_info_v1.txt ├── jay_head_manager_ext_mode_setter_v1.txt ├── jay_head_manager_ext_non_desktop_info_v1.txt ├── jay_head_manager_ext_non_desktop_override_v1.txt ├── jay_head_manager_ext_physical_display_info_v1.txt ├── jay_head_manager_ext_tearing_state_v1.txt ├── jay_head_manager_ext_vrr_state_v1.txt ├── jay_head_manager_session_v1.txt ├── jay_head_manager_v1.txt ├── jay_head_transaction_result_v1.txt ├── jay_head_v1.txt ├── jay_idle.txt ├── jay_input.txt ├── jay_log_file.txt ├── jay_output.txt ├── jay_pointer.txt ├── jay_randr.txt ├── jay_reexec.txt ├── jay_render_ctx.txt ├── jay_screencast.txt ├── jay_screenshot.txt ├── jay_seat_events.txt ├── jay_select_toplevel.txt ├── jay_select_workspace.txt ├── jay_toplevel.txt ├── jay_tray_item_v1.txt ├── jay_tray_v1.txt ├── jay_tree_query.txt ├── jay_workspace.txt ├── jay_workspace_watcher.txt ├── jay_xwayland.txt ├── org_kde_kwin_server_decoration.txt ├── org_kde_kwin_server_decoration_manager.txt ├── wl_buffer.txt ├── wl_callback.txt ├── wl_compositor.txt ├── wl_data_device.txt ├── wl_data_device_manager.txt ├── wl_data_offer.txt ├── wl_data_source.txt ├── wl_display.txt ├── wl_drm.txt ├── wl_fixes.txt ├── wl_keyboard.txt ├── wl_output.txt ├── wl_pointer.txt ├── wl_region.txt ├── wl_registry.txt ├── wl_seat.txt ├── wl_shm.txt ├── wl_shm_pool.txt ├── wl_subcompositor.txt ├── wl_subsurface.txt ├── wl_surface.txt ├── wl_touch.txt ├── wp_alpha_modifier_surface_v1.txt ├── wp_alpha_modifier_v1.txt ├── wp_color_management_output_v1.txt ├── wp_color_management_surface_feedback_v1.txt ├── wp_color_management_surface_v1.txt ├── wp_color_manager_v1.txt ├── wp_commit_timer_v1.txt ├── wp_commit_timing_manager_v1.txt ├── wp_content_type_manager_v1.txt ├── wp_content_type_v1.txt ├── wp_cursor_shape_device_v1.txt ├── wp_cursor_shape_manager_v1.txt ├── wp_drm_lease_connector_v1.txt ├── wp_drm_lease_device_v1.txt ├── wp_drm_lease_request_v1.txt ├── wp_drm_lease_v1.txt ├── wp_fifo_manager_v1.txt ├── wp_fifo_v1.txt ├── wp_fractional_scale_manager_v1.txt ├── wp_fractional_scale_v1.txt ├── wp_image_description_creator_icc_v1.txt ├── wp_image_description_creator_params_v1.txt ├── wp_image_description_info_v1.txt ├── wp_image_description_v1.txt ├── wp_linux_drm_syncobj_manager_v1.txt ├── wp_linux_drm_syncobj_surface_v1.txt ├── wp_linux_drm_syncobj_timeline_v1.txt ├── wp_pointer_warp_v1.txt ├── wp_presentation.txt ├── wp_presentation_feedback.txt ├── wp_security_context_manager_v1.txt ├── wp_security_context_v1.txt ├── wp_single_pixel_buffer_manager_v1.txt ├── wp_tearing_control_manager_v1.txt ├── wp_tearing_control_v1.txt ├── wp_viewport.txt ├── wp_viewporter.txt ├── xdg_activation_token_v1.txt ├── xdg_activation_v1.txt ├── xdg_dialog_v1.txt ├── xdg_popup.txt ├── xdg_positioner.txt ├── xdg_surface.txt ├── xdg_toplevel.txt ├── xdg_toplevel_drag_manager_v1.txt ├── xdg_toplevel_drag_v1.txt ├── xdg_toplevel_tag_manager_v1.txt ├── xdg_wm_base.txt ├── xdg_wm_dialog_v1.txt ├── xwayland_shell_v1.txt ├── xwayland_surface_v1.txt ├── zwlr_data_control_device_v1.txt ├── zwlr_data_control_manager_v1.txt ├── zwlr_data_control_offer_v1.txt ├── zwlr_data_control_source_v1.txt ├── zwlr_foreign_toplevel_handle_v1.txt ├── zwlr_foreign_toplevel_manager_v1.txt ├── zwlr_layer_shell_v1.txt ├── zwlr_layer_surface_v1.txt ├── zwlr_output_configuration_head_v1.txt ├── zwlr_output_configuration_v1.txt ├── zwlr_output_head_v1.txt ├── zwlr_output_manager_v1.txt ├── zwlr_output_mode_v1.txt ├── zwlr_screencopy_frame_v1.txt ├── zwlr_screencopy_manager_v1.txt ├── zwp_confined_pointer_v1.txt ├── zwp_idle_inhibit_manager_v1.txt ├── zwp_idle_inhibitor_v1.txt ├── zwp_input_method_keyboard_grab_v2.txt ├── zwp_input_method_manager_v2.txt ├── zwp_input_method_v2.txt ├── zwp_input_popup_surface_v2.txt ├── zwp_linux_buffer_params_v1.txt ├── zwp_linux_dmabuf_feedback_v1.txt ├── zwp_linux_dmabuf_v1.txt ├── zwp_locked_pointer_v1.txt ├── zwp_pointer_constraints_v1.txt ├── zwp_pointer_gesture_hold_v1.txt ├── zwp_pointer_gesture_pinch_v1.txt ├── zwp_pointer_gesture_swipe_v1.txt ├── zwp_pointer_gestures_v1.txt ├── zwp_primary_selection_device_manager_v1.txt ├── zwp_primary_selection_device_v1.txt ├── zwp_primary_selection_offer_v1.txt ├── zwp_primary_selection_source_v1.txt ├── zwp_relative_pointer_manager_v1.txt ├── zwp_relative_pointer_v1.txt ├── zwp_tablet_manager_v2.txt ├── zwp_tablet_pad_dial_v2.txt ├── zwp_tablet_pad_group_v2.txt ├── zwp_tablet_pad_ring_v2.txt ├── zwp_tablet_pad_strip_v2.txt ├── zwp_tablet_pad_v2.txt ├── zwp_tablet_seat_v2.txt ├── zwp_tablet_tool_v2.txt ├── zwp_tablet_v2.txt ├── zwp_text_input_manager_v3.txt ├── zwp_text_input_v3.txt ├── zwp_virtual_keyboard_manager_v1.txt ├── zwp_virtual_keyboard_v1.txt ├── zxdg_decoration_manager_v1.txt ├── zxdg_output_manager_v1.txt ├── zxdg_output_v1.txt └── zxdg_toplevel_decoration_v1.txt └── xml-to-wire ├── Cargo.toml └── src ├── ast.rs ├── builder.rs ├── main.rs └── parser.rs /.builds/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.builds/build.yml -------------------------------------------------------------------------------- /.builds/check-musl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.builds/check-musl.yml -------------------------------------------------------------------------------- /.builds/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.builds/test.yml -------------------------------------------------------------------------------- /.builds/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.builds/unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/check-spv.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.github/workflows/check-spv.yml -------------------------------------------------------------------------------- /.github/workflows/rustfmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.github/workflows/rustfmt.yml -------------------------------------------------------------------------------- /.github/workflows/toml-spec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.github/workflows/toml-spec.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/.gitmodules -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/Cargo.toml -------------------------------------------------------------------------------- /algorithms/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/src/lib.rs -------------------------------------------------------------------------------- /algorithms/src/qoi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/src/qoi.rs -------------------------------------------------------------------------------- /algorithms/src/rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/src/rect.rs -------------------------------------------------------------------------------- /algorithms/src/rect/region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/src/rect/region.rs -------------------------------------------------------------------------------- /algorithms/src/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/algorithms/src/windows.rs -------------------------------------------------------------------------------- /compile-shaders/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /compile-shaders/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/Cargo.lock -------------------------------------------------------------------------------- /compile-shaders/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/Cargo.toml -------------------------------------------------------------------------------- /compile-shaders/compile/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/compile/Cargo.toml -------------------------------------------------------------------------------- /compile-shaders/compile/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/compile/src/main.rs -------------------------------------------------------------------------------- /compile-shaders/core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/core/Cargo.toml -------------------------------------------------------------------------------- /compile-shaders/core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/core/src/lib.rs -------------------------------------------------------------------------------- /compile-shaders/core/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/core/src/main.rs -------------------------------------------------------------------------------- /compile-shaders/shaderc-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/shaderc-sys/Cargo.toml -------------------------------------------------------------------------------- /compile-shaders/shaderc-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/shaderc-sys/build.rs -------------------------------------------------------------------------------- /compile-shaders/shaderc-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/compile-shaders/shaderc-sys/src/lib.rs -------------------------------------------------------------------------------- /deploy-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/deploy-notes.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/docs/features.md -------------------------------------------------------------------------------- /docs/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/docs/setup.md -------------------------------------------------------------------------------- /docs/window-and-client-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/docs/window-and-client-rules.md -------------------------------------------------------------------------------- /etc/jay-portals.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/etc/jay-portals.conf -------------------------------------------------------------------------------- /etc/jay.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/etc/jay.desktop -------------------------------------------------------------------------------- /etc/jay.portal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/etc/jay.portal -------------------------------------------------------------------------------- /jay-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/Cargo.toml -------------------------------------------------------------------------------- /jay-config/src/_private.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/_private.rs -------------------------------------------------------------------------------- /jay-config/src/_private/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/_private/client.rs -------------------------------------------------------------------------------- /jay-config/src/_private/ipc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/_private/ipc.rs -------------------------------------------------------------------------------- /jay-config/src/_private/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/_private/logging.rs -------------------------------------------------------------------------------- /jay-config/src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/client.rs -------------------------------------------------------------------------------- /jay-config/src/embedded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/embedded.rs -------------------------------------------------------------------------------- /jay-config/src/exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/exec.rs -------------------------------------------------------------------------------- /jay-config/src/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/input.rs -------------------------------------------------------------------------------- /jay-config/src/input/acceleration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/input/acceleration.rs -------------------------------------------------------------------------------- /jay-config/src/input/capability.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/input/capability.rs -------------------------------------------------------------------------------- /jay-config/src/input/clickmethod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/input/clickmethod.rs -------------------------------------------------------------------------------- /jay-config/src/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/io.rs -------------------------------------------------------------------------------- /jay-config/src/keyboard/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/keyboard/mod.rs -------------------------------------------------------------------------------- /jay-config/src/keyboard/mods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/keyboard/mods.rs -------------------------------------------------------------------------------- /jay-config/src/keyboard/syms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/keyboard/syms.rs -------------------------------------------------------------------------------- /jay-config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/lib.rs -------------------------------------------------------------------------------- /jay-config/src/logging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/logging.rs -------------------------------------------------------------------------------- /jay-config/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/macros.rs -------------------------------------------------------------------------------- /jay-config/src/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/status.rs -------------------------------------------------------------------------------- /jay-config/src/tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/tasks.rs -------------------------------------------------------------------------------- /jay-config/src/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/theme.rs -------------------------------------------------------------------------------- /jay-config/src/timer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/timer.rs -------------------------------------------------------------------------------- /jay-config/src/video.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/video.rs -------------------------------------------------------------------------------- /jay-config/src/window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/window.rs -------------------------------------------------------------------------------- /jay-config/src/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/workspace.rs -------------------------------------------------------------------------------- /jay-config/src/xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/jay-config/src/xwayland.rs -------------------------------------------------------------------------------- /release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/release-notes.md -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- 1 | imports_granularity = "One" 2 | -------------------------------------------------------------------------------- /src/acceptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/acceptor.rs -------------------------------------------------------------------------------- /src/allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/allocator.rs -------------------------------------------------------------------------------- /src/async_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/async_engine.rs -------------------------------------------------------------------------------- /src/async_engine/ae_task.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/async_engine/ae_task.rs -------------------------------------------------------------------------------- /src/async_engine/ae_yield.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/async_engine/ae_yield.rs -------------------------------------------------------------------------------- /src/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backend.rs -------------------------------------------------------------------------------- /src/backend/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backend/transaction.rs -------------------------------------------------------------------------------- /src/backends.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends.rs -------------------------------------------------------------------------------- /src/backends/dummy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/dummy.rs -------------------------------------------------------------------------------- /src/backends/metal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal.rs -------------------------------------------------------------------------------- /src/backends/metal/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal/input.rs -------------------------------------------------------------------------------- /src/backends/metal/monitor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal/monitor.rs -------------------------------------------------------------------------------- /src/backends/metal/present.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal/present.rs -------------------------------------------------------------------------------- /src/backends/metal/transaction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal/transaction.rs -------------------------------------------------------------------------------- /src/backends/metal/video.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/metal/video.rs -------------------------------------------------------------------------------- /src/backends/x.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/backends/x.rs -------------------------------------------------------------------------------- /src/bridge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/bridge.c -------------------------------------------------------------------------------- /src/bugs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/bugs.rs -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/cli/clients.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/clients.rs -------------------------------------------------------------------------------- /src/cli/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/color.rs -------------------------------------------------------------------------------- /src/cli/color_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/color_management.rs -------------------------------------------------------------------------------- /src/cli/damage_tracking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/damage_tracking.rs -------------------------------------------------------------------------------- /src/cli/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/duration.rs -------------------------------------------------------------------------------- /src/cli/generate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/generate.rs -------------------------------------------------------------------------------- /src/cli/idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/idle.rs -------------------------------------------------------------------------------- /src/cli/input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/input.rs -------------------------------------------------------------------------------- /src/cli/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/log.rs -------------------------------------------------------------------------------- /src/cli/quit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/quit.rs -------------------------------------------------------------------------------- /src/cli/randr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/randr.rs -------------------------------------------------------------------------------- /src/cli/reexec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/reexec.rs -------------------------------------------------------------------------------- /src/cli/run_privileged.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/run_privileged.rs -------------------------------------------------------------------------------- /src/cli/screenshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/screenshot.rs -------------------------------------------------------------------------------- /src/cli/seat_test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/seat_test.rs -------------------------------------------------------------------------------- /src/cli/set_log_level.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/set_log_level.rs -------------------------------------------------------------------------------- /src/cli/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/tree.rs -------------------------------------------------------------------------------- /src/cli/unlock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/unlock.rs -------------------------------------------------------------------------------- /src/cli/version.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/version.rs -------------------------------------------------------------------------------- /src/cli/xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cli/xwayland.rs -------------------------------------------------------------------------------- /src/client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/client.rs -------------------------------------------------------------------------------- /src/client/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/client/error.rs -------------------------------------------------------------------------------- /src/client/objects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/client/objects.rs -------------------------------------------------------------------------------- /src/client/tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/client/tasks.rs -------------------------------------------------------------------------------- /src/clientmem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/clientmem.rs -------------------------------------------------------------------------------- /src/cmm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm.rs -------------------------------------------------------------------------------- /src/cmm/cmm_description.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_description.rs -------------------------------------------------------------------------------- /src/cmm/cmm_eotf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_eotf.rs -------------------------------------------------------------------------------- /src/cmm/cmm_luminance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_luminance.rs -------------------------------------------------------------------------------- /src/cmm/cmm_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_manager.rs -------------------------------------------------------------------------------- /src/cmm/cmm_primaries.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_primaries.rs -------------------------------------------------------------------------------- /src/cmm/cmm_tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_tests.rs -------------------------------------------------------------------------------- /src/cmm/cmm_transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cmm/cmm_transform.rs -------------------------------------------------------------------------------- /src/compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/compositor.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/config/handler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/config/handler.rs -------------------------------------------------------------------------------- /src/cpu_worker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cpu_worker.rs -------------------------------------------------------------------------------- /src/cpu_worker/jobs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cpu_worker/jobs.rs -------------------------------------------------------------------------------- /src/cpu_worker/jobs/img_copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cpu_worker/jobs/img_copy.rs -------------------------------------------------------------------------------- /src/cpu_worker/jobs/read_write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cpu_worker/jobs/read_write.rs -------------------------------------------------------------------------------- /src/cpu_worker/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cpu_worker/tests.rs -------------------------------------------------------------------------------- /src/criteria.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria.rs -------------------------------------------------------------------------------- /src/criteria/clm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/clm.rs -------------------------------------------------------------------------------- /src/criteria/clm/clm_matchers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/clm/clm_matchers.rs -------------------------------------------------------------------------------- /src/criteria/clm/clm_matchers/clmm_pid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/clm/clm_matchers/clmm_pid.rs -------------------------------------------------------------------------------- /src/criteria/clm/clm_matchers/clmm_uid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/clm/clm_matchers/clmm_uid.rs -------------------------------------------------------------------------------- /src/criteria/crit_graph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_graph.rs -------------------------------------------------------------------------------- /src/criteria/crit_graph/crit_middle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_graph/crit_middle.rs -------------------------------------------------------------------------------- /src/criteria/crit_graph/crit_root.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_graph/crit_root.rs -------------------------------------------------------------------------------- /src/criteria/crit_graph/crit_target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_graph/crit_target.rs -------------------------------------------------------------------------------- /src/criteria/crit_graph/crit_upstream.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_graph/crit_upstream.rs -------------------------------------------------------------------------------- /src/criteria/crit_leaf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_leaf.rs -------------------------------------------------------------------------------- /src/criteria/crit_matchers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_matchers.rs -------------------------------------------------------------------------------- /src/criteria/crit_per_target_data.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/crit_per_target_data.rs -------------------------------------------------------------------------------- /src/criteria/tlm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/tlm.rs -------------------------------------------------------------------------------- /src/criteria/tlm/tlm_matchers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/criteria/tlm/tlm_matchers.rs -------------------------------------------------------------------------------- /src/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cursor.rs -------------------------------------------------------------------------------- /src/cursor_user.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/cursor_user.rs -------------------------------------------------------------------------------- /src/damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/damage.rs -------------------------------------------------------------------------------- /src/dbus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus.rs -------------------------------------------------------------------------------- /src/dbus/auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/auth.rs -------------------------------------------------------------------------------- /src/dbus/dynamic_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/dynamic_type.rs -------------------------------------------------------------------------------- /src/dbus/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/formatter.rs -------------------------------------------------------------------------------- /src/dbus/holder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/holder.rs -------------------------------------------------------------------------------- /src/dbus/incoming.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/incoming.rs -------------------------------------------------------------------------------- /src/dbus/outgoing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/outgoing.rs -------------------------------------------------------------------------------- /src/dbus/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/parser.rs -------------------------------------------------------------------------------- /src/dbus/property.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/property.rs -------------------------------------------------------------------------------- /src/dbus/socket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/socket.rs -------------------------------------------------------------------------------- /src/dbus/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/dbus/types.rs -------------------------------------------------------------------------------- /src/drm_feedback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/drm_feedback.rs -------------------------------------------------------------------------------- /src/edid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/edid.rs -------------------------------------------------------------------------------- /src/ei.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei.rs -------------------------------------------------------------------------------- /src/ei/ei_acceptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_acceptor.rs -------------------------------------------------------------------------------- /src/ei/ei_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_client.rs -------------------------------------------------------------------------------- /src/ei/ei_client/ei_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_client/ei_error.rs -------------------------------------------------------------------------------- /src/ei/ei_client/ei_objects.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_client/ei_objects.rs -------------------------------------------------------------------------------- /src/ei/ei_client/ei_tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_client/ei_tasks.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_button.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_button.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_callback.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_connection.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_connection.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_device.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_handshake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_handshake.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_keyboard.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_pingpong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_pingpong.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_pointer.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_pointer_absolute.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_pointer_absolute.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_scroll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_scroll.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_seat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_seat.rs -------------------------------------------------------------------------------- /src/ei/ei_ifs/ei_touchscreen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_ifs/ei_touchscreen.rs -------------------------------------------------------------------------------- /src/ei/ei_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ei/ei_object.rs -------------------------------------------------------------------------------- /src/fixed.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/fixed.rs -------------------------------------------------------------------------------- /src/forker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/forker.rs -------------------------------------------------------------------------------- /src/forker/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/forker/io.rs -------------------------------------------------------------------------------- /src/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/format.rs -------------------------------------------------------------------------------- /src/gfx_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_api.rs -------------------------------------------------------------------------------- /src/gfx_apis.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/egl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/egl.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/egl/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/egl/context.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/egl/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/egl/display.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/egl/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/egl/image.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/egl/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/egl/sys.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/ext.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/frame_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/frame_buffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/program.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/program.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/render_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/render_buffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/shader.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/shader.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/sys.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/gl/texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/gl/texture.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/proc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/proc.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer/context.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer/framebuffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer/framebuffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer/image.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer/sync.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/renderer/texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/renderer/texture.rs -------------------------------------------------------------------------------- /src/gfx_apis/gl/shaders/fill.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/shaders/fill.frag.glsl -------------------------------------------------------------------------------- /src/gfx_apis/gl/shaders/fill.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/shaders/fill.vert.glsl -------------------------------------------------------------------------------- /src/gfx_apis/gl/shaders/tex.frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/shaders/tex.frag.glsl -------------------------------------------------------------------------------- /src/gfx_apis/gl/shaders/tex.vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/gl/shaders/tex.vert.glsl -------------------------------------------------------------------------------- /src/gfx_apis/vulkan.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/allocator.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/blend_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/blend_buffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/bo_allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/bo_allocator.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/buffer_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/buffer_cache.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/command.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/command.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/descriptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/descriptor.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/descriptor_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/descriptor_buffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/device.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/dmabuf_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/dmabuf_buffer.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/eotfs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/eotfs.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/fence.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/fence.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/format.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/image.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/instance.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/instance.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/pipeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/pipeline.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/renderer.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/sampler.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/sampler.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/semaphore.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/semaphore.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/eotfs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/eotfs.glsl -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/fill.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/fill.frag -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/fill.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/fill.vert -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/out.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/out.frag -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/out.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/out.vert -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/tex.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/tex.frag -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/tex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/tex.vert -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders/tex_set.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders/tex_set.glsl -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shaders_hash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shaders_hash.txt -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/shm_image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/shm_image.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/staging.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/staging.rs -------------------------------------------------------------------------------- /src/gfx_apis/vulkan/transfer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/gfx_apis/vulkan/transfer.rs -------------------------------------------------------------------------------- /src/globals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/globals.rs -------------------------------------------------------------------------------- /src/icons.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/icons.rs -------------------------------------------------------------------------------- /src/ifs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs.rs -------------------------------------------------------------------------------- /src/ifs/color_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/color_management.rs -------------------------------------------------------------------------------- /src/ifs/ext_foreign_toplevel_handle_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_foreign_toplevel_handle_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_foreign_toplevel_list_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_foreign_toplevel_list_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_idle_notification_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_idle_notification_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_idle_notifier_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_idle_notifier_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_image_capture_source_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_image_capture_source_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_image_copy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_image_copy.rs -------------------------------------------------------------------------------- /src/ifs/ext_session_lock_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_session_lock_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/ext_session_lock_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ext_session_lock_v1.rs -------------------------------------------------------------------------------- /src/ifs/head_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/head_management.rs -------------------------------------------------------------------------------- /src/ifs/head_management/jay_head_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/head_management/jay_head_ext.rs -------------------------------------------------------------------------------- /src/ifs/head_management/jay_head_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/head_management/jay_head_v1.rs -------------------------------------------------------------------------------- /src/ifs/ipc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc.rs -------------------------------------------------------------------------------- /src/ifs/ipc/data_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/data_control.rs -------------------------------------------------------------------------------- /src/ifs/ipc/data_control/private.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/data_control/private.rs -------------------------------------------------------------------------------- /src/ifs/ipc/wl_data_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/wl_data_device.rs -------------------------------------------------------------------------------- /src/ifs/ipc/wl_data_device_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/wl_data_device_manager.rs -------------------------------------------------------------------------------- /src/ifs/ipc/wl_data_offer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/wl_data_offer.rs -------------------------------------------------------------------------------- /src/ifs/ipc/wl_data_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/wl_data_source.rs -------------------------------------------------------------------------------- /src/ifs/ipc/x_data_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/x_data_device.rs -------------------------------------------------------------------------------- /src/ifs/ipc/x_data_offer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/x_data_offer.rs -------------------------------------------------------------------------------- /src/ifs/ipc/x_data_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/ipc/x_data_source.rs -------------------------------------------------------------------------------- /src/ifs/jay_client_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_client_query.rs -------------------------------------------------------------------------------- /src/ifs/jay_color_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_color_management.rs -------------------------------------------------------------------------------- /src/ifs/jay_compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_compositor.rs -------------------------------------------------------------------------------- /src/ifs/jay_damage_tracking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_damage_tracking.rs -------------------------------------------------------------------------------- /src/ifs/jay_ei_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_ei_session.rs -------------------------------------------------------------------------------- /src/ifs/jay_ei_session_builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_ei_session_builder.rs -------------------------------------------------------------------------------- /src/ifs/jay_idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_idle.rs -------------------------------------------------------------------------------- /src/ifs/jay_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_input.rs -------------------------------------------------------------------------------- /src/ifs/jay_log_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_log_file.rs -------------------------------------------------------------------------------- /src/ifs/jay_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_output.rs -------------------------------------------------------------------------------- /src/ifs/jay_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_pointer.rs -------------------------------------------------------------------------------- /src/ifs/jay_randr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_randr.rs -------------------------------------------------------------------------------- /src/ifs/jay_reexec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_reexec.rs -------------------------------------------------------------------------------- /src/ifs/jay_render_ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_render_ctx.rs -------------------------------------------------------------------------------- /src/ifs/jay_screencast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_screencast.rs -------------------------------------------------------------------------------- /src/ifs/jay_screenshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_screenshot.rs -------------------------------------------------------------------------------- /src/ifs/jay_seat_events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_seat_events.rs -------------------------------------------------------------------------------- /src/ifs/jay_select_toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_select_toplevel.rs -------------------------------------------------------------------------------- /src/ifs/jay_select_workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_select_workspace.rs -------------------------------------------------------------------------------- /src/ifs/jay_toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_toplevel.rs -------------------------------------------------------------------------------- /src/ifs/jay_tray_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_tray_v1.rs -------------------------------------------------------------------------------- /src/ifs/jay_tree_query.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_tree_query.rs -------------------------------------------------------------------------------- /src/ifs/jay_workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_workspace.rs -------------------------------------------------------------------------------- /src/ifs/jay_workspace_watcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_workspace_watcher.rs -------------------------------------------------------------------------------- /src/ifs/jay_xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/jay_xwayland.rs -------------------------------------------------------------------------------- /src/ifs/org_kde_kwin_server_decoration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/org_kde_kwin_server_decoration.rs -------------------------------------------------------------------------------- /src/ifs/wl_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_buffer.rs -------------------------------------------------------------------------------- /src/ifs/wl_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_callback.rs -------------------------------------------------------------------------------- /src/ifs/wl_compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_compositor.rs -------------------------------------------------------------------------------- /src/ifs/wl_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_display.rs -------------------------------------------------------------------------------- /src/ifs/wl_drm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_drm.rs -------------------------------------------------------------------------------- /src/ifs/wl_fixes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_fixes.rs -------------------------------------------------------------------------------- /src/ifs/wl_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_output.rs -------------------------------------------------------------------------------- /src/ifs/wl_output/removed_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_output/removed_output.rs -------------------------------------------------------------------------------- /src/ifs/wl_region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_region.rs -------------------------------------------------------------------------------- /src/ifs/wl_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_registry.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/event_handling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/event_handling.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/ext_transient_seat_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/ext_transient_seat_v1.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/gesture_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/gesture_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/kb_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/kb_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/pointer_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/pointer_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/pad.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/pad.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/pad_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/pad_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/tablet_bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/tablet_bindings.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/tool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/tool.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/tool_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/tool_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/tablet/zwp_tablet_v2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/tablet/zwp_tablet_v2.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/text_input.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/text_input/simple_im.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/text_input/simple_im.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/touch_owner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/touch_owner.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/wl_keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/wl_keyboard.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/wl_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/wl_pointer.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/wl_touch.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/wl_touch.rs -------------------------------------------------------------------------------- /src/ifs/wl_seat/wp_pointer_warp_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_seat/wp_pointer_warp_v1.rs -------------------------------------------------------------------------------- /src/ifs/wl_shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_shm.rs -------------------------------------------------------------------------------- /src/ifs/wl_shm_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_shm_pool.rs -------------------------------------------------------------------------------- /src/ifs/wl_subcompositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_subcompositor.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/commit_timeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/commit_timeline.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/cursor.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/dnd_icon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/dnd_icon.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/tray.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/tray.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/wl_subsurface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/wl_subsurface.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/wp_commit_timer_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/wp_commit_timer_v1.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/wp_fifo_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/wp_fifo_v1.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/wp_viewport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/wp_viewport.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/x_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/x_surface.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/x_surface/xwindow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/x_surface/xwindow.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/xdg_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/xdg_surface.rs -------------------------------------------------------------------------------- /src/ifs/wl_surface/xwayland_shell_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wl_surface/xwayland_shell_v1.rs -------------------------------------------------------------------------------- /src/ifs/wlr_output_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wlr_output_manager.rs -------------------------------------------------------------------------------- /src/ifs/workspace_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/workspace_manager.rs -------------------------------------------------------------------------------- /src/ifs/wp_alpha_modifier_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_alpha_modifier_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_commit_timing_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_commit_timing_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_content_type_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_content_type_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_content_type_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_content_type_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_cursor_shape_device_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_cursor_shape_device_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_cursor_shape_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_cursor_shape_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_drm_lease_connector_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_drm_lease_connector_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_drm_lease_device_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_drm_lease_device_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_drm_lease_request_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_drm_lease_request_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_drm_lease_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_drm_lease_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_fifo_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_fifo_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_fractional_scale_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_fractional_scale_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_presentation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_presentation.rs -------------------------------------------------------------------------------- /src/ifs/wp_presentation_feedback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_presentation_feedback.rs -------------------------------------------------------------------------------- /src/ifs/wp_security_context_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_security_context_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_security_context_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_security_context_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_tearing_control_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_tearing_control_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/wp_viewporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/wp_viewporter.rs -------------------------------------------------------------------------------- /src/ifs/xdg_activation_token_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_activation_token_v1.rs -------------------------------------------------------------------------------- /src/ifs/xdg_activation_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_activation_v1.rs -------------------------------------------------------------------------------- /src/ifs/xdg_positioner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_positioner.rs -------------------------------------------------------------------------------- /src/ifs/xdg_toplevel_drag_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_toplevel_drag_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/xdg_toplevel_drag_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_toplevel_drag_v1.rs -------------------------------------------------------------------------------- /src/ifs/xdg_toplevel_tag_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_toplevel_tag_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/xdg_wm_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_wm_base.rs -------------------------------------------------------------------------------- /src/ifs/xdg_wm_dialog_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/xdg_wm_dialog_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwlr_layer_shell_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwlr_layer_shell_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwlr_screencopy_frame_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwlr_screencopy_frame_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwlr_screencopy_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwlr_screencopy_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwp_idle_inhibit_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwp_idle_inhibit_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwp_linux_buffer_params_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwp_linux_buffer_params_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwp_linux_dmabuf_feedback_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwp_linux_dmabuf_feedback_v1.rs -------------------------------------------------------------------------------- /src/ifs/zwp_linux_dmabuf_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zwp_linux_dmabuf_v1.rs -------------------------------------------------------------------------------- /src/ifs/zxdg_decoration_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zxdg_decoration_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/zxdg_output_manager_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zxdg_output_manager_v1.rs -------------------------------------------------------------------------------- /src/ifs/zxdg_output_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zxdg_output_v1.rs -------------------------------------------------------------------------------- /src/ifs/zxdg_toplevel_decoration_v1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/ifs/zxdg_toplevel_decoration_v1.rs -------------------------------------------------------------------------------- /src/io_uring.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring.rs -------------------------------------------------------------------------------- /src/io_uring/debounce.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/debounce.rs -------------------------------------------------------------------------------- /src/io_uring/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops.rs -------------------------------------------------------------------------------- /src/io_uring/ops/accept.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/accept.rs -------------------------------------------------------------------------------- /src/io_uring/ops/async_cancel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/async_cancel.rs -------------------------------------------------------------------------------- /src/io_uring/ops/connect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/connect.rs -------------------------------------------------------------------------------- /src/io_uring/ops/poll.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/poll.rs -------------------------------------------------------------------------------- /src/io_uring/ops/poll_external.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/poll_external.rs -------------------------------------------------------------------------------- /src/io_uring/ops/read_write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/read_write.rs -------------------------------------------------------------------------------- /src/io_uring/ops/read_write_no_cancel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/read_write_no_cancel.rs -------------------------------------------------------------------------------- /src/io_uring/ops/recvmsg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/recvmsg.rs -------------------------------------------------------------------------------- /src/io_uring/ops/sendmsg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/sendmsg.rs -------------------------------------------------------------------------------- /src/io_uring/ops/timeout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/timeout.rs -------------------------------------------------------------------------------- /src/io_uring/ops/timeout_external.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/timeout_external.rs -------------------------------------------------------------------------------- /src/io_uring/ops/timeout_link.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/ops/timeout_link.rs -------------------------------------------------------------------------------- /src/io_uring/pending_result.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/pending_result.rs -------------------------------------------------------------------------------- /src/io_uring/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/io_uring/sys.rs -------------------------------------------------------------------------------- /src/it.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it.rs -------------------------------------------------------------------------------- /src/it/test_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_backend.rs -------------------------------------------------------------------------------- /src/it/test_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_client.rs -------------------------------------------------------------------------------- /src/it/test_config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_config.rs -------------------------------------------------------------------------------- /src/it/test_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_error.rs -------------------------------------------------------------------------------- /src/it/test_gfx_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_gfx_api.rs -------------------------------------------------------------------------------- /src/it/test_ifs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_alpha_modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_alpha_modifier.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_buffer.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_callback.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_compositor.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_content_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_content_type.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_data_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_data_device.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_data_offer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_data_offer.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_data_source.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_data_source.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_display.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_dmabuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_dmabuf.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_dmabuf_feedback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_dmabuf_feedback.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_fifo_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_fifo_manager.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_input_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_input_method.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_jay_compositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_jay_compositor.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_keyboard.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_pointer.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_pointer_warp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_pointer_warp.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_region.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_registry.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_screenshot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_screenshot.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_seat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_seat.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_shm.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_shm_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_shm_buffer.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_shm_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_shm_pool.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_subcompositor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_subcompositor.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_subsurface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_subsurface.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_surface.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_text_input.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_text_input.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_toplevel_drag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_toplevel_drag.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_viewport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_viewport.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_viewporter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_viewporter.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_wl_fixes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_wl_fixes.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_xdg_activation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_xdg_activation.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_xdg_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_xdg_base.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_xdg_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_xdg_surface.rs -------------------------------------------------------------------------------- /src/it/test_ifs/test_xdg_toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_ifs/test_xdg_toplevel.rs -------------------------------------------------------------------------------- /src/it/test_logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_logger.rs -------------------------------------------------------------------------------- /src/it/test_macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_macros.rs -------------------------------------------------------------------------------- /src/it/test_mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_mem.rs -------------------------------------------------------------------------------- /src/it/test_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_object.rs -------------------------------------------------------------------------------- /src/it/test_transport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_transport.rs -------------------------------------------------------------------------------- /src/it/test_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_utils.rs -------------------------------------------------------------------------------- /src/it/test_utils/test_object_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_utils/test_object_ext.rs -------------------------------------------------------------------------------- /src/it/test_utils/test_surface_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_utils/test_surface_ext.rs -------------------------------------------------------------------------------- /src/it/test_utils/test_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/test_utils/test_window.rs -------------------------------------------------------------------------------- /src/it/testrun.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/testrun.rs -------------------------------------------------------------------------------- /src/it/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests.rs -------------------------------------------------------------------------------- /src/it/tests/t0001_shm_formats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0001_shm_formats.rs -------------------------------------------------------------------------------- /src/it/tests/t0002_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0002_window.rs -------------------------------------------------------------------------------- /src/it/tests/t0003_multi_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0003_multi_window.rs -------------------------------------------------------------------------------- /src/it/tests/t0004_quit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0004_quit.rs -------------------------------------------------------------------------------- /src/it/tests/t0005_create_seat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0005_create_seat.rs -------------------------------------------------------------------------------- /src/it/tests/t0006_region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0006_region.rs -------------------------------------------------------------------------------- /src/it/tests/t0007_subsurface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0007_subsurface.rs -------------------------------------------------------------------------------- /src/it/tests/t0008_map_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0008_map_focus.rs -------------------------------------------------------------------------------- /src/it/tests/t0009_tab_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0009_tab_focus.rs -------------------------------------------------------------------------------- /src/it/tests/t0010_fullscreen_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0010_fullscreen_focus.rs -------------------------------------------------------------------------------- /src/it/tests/t0011_set_keymap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0011_set_keymap.rs -------------------------------------------------------------------------------- /src/it/tests/t0012_subsurface_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0012_subsurface_focus.rs -------------------------------------------------------------------------------- /src/it/tests/t0015_scroll_partial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0015_scroll_partial.rs -------------------------------------------------------------------------------- /src/it/tests/t0016_scroll_ws.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0016_scroll_ws.rs -------------------------------------------------------------------------------- /src/it/tests/t0017_remove_unused_ws.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0017_remove_unused_ws.rs -------------------------------------------------------------------------------- /src/it/tests/t0020_surface_offset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0020_surface_offset.rs -------------------------------------------------------------------------------- /src/it/tests/t0023_xdg_activation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0023_xdg_activation.rs -------------------------------------------------------------------------------- /src/it/tests/t0025_dnd_focus_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0025_dnd_focus_change.rs -------------------------------------------------------------------------------- /src/it/tests/t0026_output_transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0026_output_transform.rs -------------------------------------------------------------------------------- /src/it/tests/t0027_input_region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0027_input_region.rs -------------------------------------------------------------------------------- /src/it/tests/t0030_cursor_shape.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0030_cursor_shape.rs -------------------------------------------------------------------------------- /src/it/tests/t0031_syncobj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0031_syncobj.rs -------------------------------------------------------------------------------- /src/it/tests/t0032_data_control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0032_data_control.rs -------------------------------------------------------------------------------- /src/it/tests/t0035_scanout_feedback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0035_scanout_feedback.rs -------------------------------------------------------------------------------- /src/it/tests/t0036_idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0036_idle.rs -------------------------------------------------------------------------------- /src/it/tests/t0037_toplevel_drag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0037_toplevel_drag.rs -------------------------------------------------------------------------------- /src/it/tests/t0039_alpha_modifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0039_alpha_modifier.rs -------------------------------------------------------------------------------- /src/it/tests/t0040_virtual_keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0040_virtual_keyboard.rs -------------------------------------------------------------------------------- /src/it/tests/t0041_input_method.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0041_input_method.rs -------------------------------------------------------------------------------- /src/it/tests/t0042_toplevel_select.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0042_toplevel_select.rs -------------------------------------------------------------------------------- /src/it/tests/t0043_destroy_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0043_destroy_registry.rs -------------------------------------------------------------------------------- /src/it/tests/t0044_stacked_focus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0044_stacked_focus.rs -------------------------------------------------------------------------------- /src/it/tests/t0045_content_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0045_content_type.rs -------------------------------------------------------------------------------- /src/it/tests/t0046_buffer_release.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0046_buffer_release.rs -------------------------------------------------------------------------------- /src/it/tests/t0047_surface_damage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0047_surface_damage.rs -------------------------------------------------------------------------------- /src/it/tests/t0048_frame_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0048_frame_callback.rs -------------------------------------------------------------------------------- /src/it/tests/t0050_fifo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0050_fifo.rs -------------------------------------------------------------------------------- /src/it/tests/t0051_pointer_warp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0051_pointer_warp.rs -------------------------------------------------------------------------------- /src/it/tests/t0052_bar.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/it/tests/t0052_bar.rs -------------------------------------------------------------------------------- /src/kbvm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/kbvm.rs -------------------------------------------------------------------------------- /src/keyboard.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/keyboard.rs -------------------------------------------------------------------------------- /src/keycodes.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/keycodes.xkb -------------------------------------------------------------------------------- /src/keymap.xkb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/keymap.xkb -------------------------------------------------------------------------------- /src/leaks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/leaks.rs -------------------------------------------------------------------------------- /src/libinput.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/libinput.rs -------------------------------------------------------------------------------- /src/libinput/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/libinput/consts.rs -------------------------------------------------------------------------------- /src/libinput/device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/libinput/device.rs -------------------------------------------------------------------------------- /src/libinput/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/libinput/event.rs -------------------------------------------------------------------------------- /src/libinput/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/libinput/sys.rs -------------------------------------------------------------------------------- /src/logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/logger.rs -------------------------------------------------------------------------------- /src/logind.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/logind.rs -------------------------------------------------------------------------------- /src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/macros.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/object.rs -------------------------------------------------------------------------------- /src/output_schedule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/output_schedule.rs -------------------------------------------------------------------------------- /src/pango.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pango.rs -------------------------------------------------------------------------------- /src/pango/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pango/consts.rs -------------------------------------------------------------------------------- /src/pipewire.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire.rs -------------------------------------------------------------------------------- /src/pipewire/pw_con.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_con.rs -------------------------------------------------------------------------------- /src/pipewire/pw_formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_formatter.rs -------------------------------------------------------------------------------- /src/pipewire/pw_ifs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_ifs.rs -------------------------------------------------------------------------------- /src/pipewire/pw_ifs/pw_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_ifs/pw_client.rs -------------------------------------------------------------------------------- /src/pipewire/pw_ifs/pw_client_node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_ifs/pw_client_node.rs -------------------------------------------------------------------------------- /src/pipewire/pw_ifs/pw_core.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_ifs/pw_core.rs -------------------------------------------------------------------------------- /src/pipewire/pw_ifs/pw_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_ifs/pw_registry.rs -------------------------------------------------------------------------------- /src/pipewire/pw_mem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_mem.rs -------------------------------------------------------------------------------- /src/pipewire/pw_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_object.rs -------------------------------------------------------------------------------- /src/pipewire/pw_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_parser.rs -------------------------------------------------------------------------------- /src/pipewire/pw_pod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_pod.rs -------------------------------------------------------------------------------- /src/pipewire/pw_pod/pw_debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pipewire/pw_pod/pw_debug.rs -------------------------------------------------------------------------------- /src/portal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal.rs -------------------------------------------------------------------------------- /src/portal/ptl_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_display.rs -------------------------------------------------------------------------------- /src/portal/ptl_remote_desktop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_remote_desktop.rs -------------------------------------------------------------------------------- /src/portal/ptl_render_ctx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_render_ctx.rs -------------------------------------------------------------------------------- /src/portal/ptl_screencast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_screencast.rs -------------------------------------------------------------------------------- /src/portal/ptl_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_session.rs -------------------------------------------------------------------------------- /src/portal/ptl_text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptl_text.rs -------------------------------------------------------------------------------- /src/portal/ptr_gui.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/portal/ptr_gui.rs -------------------------------------------------------------------------------- /src/pr_caps.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/pr_caps.rs -------------------------------------------------------------------------------- /src/rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/rect.rs -------------------------------------------------------------------------------- /src/rect/region.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/rect/region.rs -------------------------------------------------------------------------------- /src/rect/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/rect/tests.rs -------------------------------------------------------------------------------- /src/renderer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/renderer.rs -------------------------------------------------------------------------------- /src/renderer/renderer_base.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/renderer/renderer_base.rs -------------------------------------------------------------------------------- /src/scale.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/scale.rs -------------------------------------------------------------------------------- /src/screenshoter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/screenshoter.rs -------------------------------------------------------------------------------- /src/security_context_acceptor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/security_context_acceptor.rs -------------------------------------------------------------------------------- /src/sighand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/sighand.rs -------------------------------------------------------------------------------- /src/state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/state.rs -------------------------------------------------------------------------------- /src/tasks.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks.rs -------------------------------------------------------------------------------- /src/tasks/backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/backend.rs -------------------------------------------------------------------------------- /src/tasks/connector.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/connector.rs -------------------------------------------------------------------------------- /src/tasks/const_clock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/const_clock.rs -------------------------------------------------------------------------------- /src/tasks/drmdev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/drmdev.rs -------------------------------------------------------------------------------- /src/tasks/hardware_cursor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/hardware_cursor.rs -------------------------------------------------------------------------------- /src/tasks/idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/idle.rs -------------------------------------------------------------------------------- /src/tasks/input_device.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/input_device.rs -------------------------------------------------------------------------------- /src/tasks/slow_clients.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/slow_clients.rs -------------------------------------------------------------------------------- /src/tasks/udev_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tasks/udev_utils.rs -------------------------------------------------------------------------------- /src/text.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/text.rs -------------------------------------------------------------------------------- /src/theme.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/theme.rs -------------------------------------------------------------------------------- /src/time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/time.rs -------------------------------------------------------------------------------- /src/tools.rs: -------------------------------------------------------------------------------- 1 | pub mod tool_client; 2 | -------------------------------------------------------------------------------- /src/tools/tool_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tools/tool_client.rs -------------------------------------------------------------------------------- /src/tracy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tracy.rs -------------------------------------------------------------------------------- /src/tracy/tracy_impl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tracy/tracy_impl.rs -------------------------------------------------------------------------------- /src/tracy/tracy_noop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tracy/tracy_noop.rs -------------------------------------------------------------------------------- /src/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree.rs -------------------------------------------------------------------------------- /src/tree/container.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/container.rs -------------------------------------------------------------------------------- /src/tree/containing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/containing.rs -------------------------------------------------------------------------------- /src/tree/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/display.rs -------------------------------------------------------------------------------- /src/tree/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/float.rs -------------------------------------------------------------------------------- /src/tree/output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/output.rs -------------------------------------------------------------------------------- /src/tree/placeholder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/placeholder.rs -------------------------------------------------------------------------------- /src/tree/stacked.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/stacked.rs -------------------------------------------------------------------------------- /src/tree/toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/toplevel.rs -------------------------------------------------------------------------------- /src/tree/walker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/walker.rs -------------------------------------------------------------------------------- /src/tree/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/tree/workspace.rs -------------------------------------------------------------------------------- /src/udev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/udev.rs -------------------------------------------------------------------------------- /src/udmabuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/udmabuf.rs -------------------------------------------------------------------------------- /src/user_session.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/user_session.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils.rs -------------------------------------------------------------------------------- /src/utils/activation_token.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/activation_token.rs -------------------------------------------------------------------------------- /src/utils/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/array.rs -------------------------------------------------------------------------------- /src/utils/array_to_tuple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/array_to_tuple.rs -------------------------------------------------------------------------------- /src/utils/asyncevent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/asyncevent.rs -------------------------------------------------------------------------------- /src/utils/binary_search_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/binary_search_map.rs -------------------------------------------------------------------------------- /src/utils/bindings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/bindings.rs -------------------------------------------------------------------------------- /src/utils/bitfield.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/bitfield.rs -------------------------------------------------------------------------------- /src/utils/bitflags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/bitflags.rs -------------------------------------------------------------------------------- /src/utils/buf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buf.rs -------------------------------------------------------------------------------- /src/utils/buffd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd.rs -------------------------------------------------------------------------------- /src/utils/buffd/buf_in.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/buf_in.rs -------------------------------------------------------------------------------- /src/utils/buffd/buf_out.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/buf_out.rs -------------------------------------------------------------------------------- /src/utils/buffd/ei_formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/ei_formatter.rs -------------------------------------------------------------------------------- /src/utils/buffd/ei_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/ei_parser.rs -------------------------------------------------------------------------------- /src/utils/buffd/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/formatter.rs -------------------------------------------------------------------------------- /src/utils/buffd/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/buffd/parser.rs -------------------------------------------------------------------------------- /src/utils/bufio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/bufio.rs -------------------------------------------------------------------------------- /src/utils/cell_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/cell_ext.rs -------------------------------------------------------------------------------- /src/utils/clone3.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/clone3.rs -------------------------------------------------------------------------------- /src/utils/clonecell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/clonecell.rs -------------------------------------------------------------------------------- /src/utils/compat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/compat.rs -------------------------------------------------------------------------------- /src/utils/copyhashmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/copyhashmap.rs -------------------------------------------------------------------------------- /src/utils/debug_fn.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/debug_fn.rs -------------------------------------------------------------------------------- /src/utils/double_buffered.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/double_buffered.rs -------------------------------------------------------------------------------- /src/utils/double_click_state.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/double_click_state.rs -------------------------------------------------------------------------------- /src/utils/errorfmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/errorfmt.rs -------------------------------------------------------------------------------- /src/utils/event_listener.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/event_listener.rs -------------------------------------------------------------------------------- /src/utils/fdcloser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/fdcloser.rs -------------------------------------------------------------------------------- /src/utils/free_list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/free_list.rs -------------------------------------------------------------------------------- /src/utils/free_list/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/free_list/tests.rs -------------------------------------------------------------------------------- /src/utils/geometric_decay.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/geometric_decay.rs -------------------------------------------------------------------------------- /src/utils/gfx_api_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/gfx_api_ext.rs -------------------------------------------------------------------------------- /src/utils/hash_map_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/hash_map_ext.rs -------------------------------------------------------------------------------- /src/utils/hex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/hex.rs -------------------------------------------------------------------------------- /src/utils/line_logger.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/line_logger.rs -------------------------------------------------------------------------------- /src/utils/linkedlist.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/linkedlist.rs -------------------------------------------------------------------------------- /src/utils/log_on_drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/log_on_drop.rs -------------------------------------------------------------------------------- /src/utils/mmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/mmap.rs -------------------------------------------------------------------------------- /src/utils/nice.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/nice.rs -------------------------------------------------------------------------------- /src/utils/nonblock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/nonblock.rs -------------------------------------------------------------------------------- /src/utils/num_cpus.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/num_cpus.rs -------------------------------------------------------------------------------- /src/utils/numcell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/numcell.rs -------------------------------------------------------------------------------- /src/utils/on_change.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/on_change.rs -------------------------------------------------------------------------------- /src/utils/on_drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/on_drop.rs -------------------------------------------------------------------------------- /src/utils/on_drop_event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/on_drop_event.rs -------------------------------------------------------------------------------- /src/utils/once.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/once.rs -------------------------------------------------------------------------------- /src/utils/opaque.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/opaque.rs -------------------------------------------------------------------------------- /src/utils/opaque_cell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/opaque_cell.rs -------------------------------------------------------------------------------- /src/utils/opt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/opt.rs -------------------------------------------------------------------------------- /src/utils/option_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/option_ext.rs -------------------------------------------------------------------------------- /src/utils/ordered_float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/ordered_float.rs -------------------------------------------------------------------------------- /src/utils/oserror.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/oserror.rs -------------------------------------------------------------------------------- /src/utils/page_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/page_size.rs -------------------------------------------------------------------------------- /src/utils/pending_serial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/pending_serial.rs -------------------------------------------------------------------------------- /src/utils/pid_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/pid_info.rs -------------------------------------------------------------------------------- /src/utils/pidfd_send_signal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/pidfd_send_signal.rs -------------------------------------------------------------------------------- /src/utils/process_name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/process_name.rs -------------------------------------------------------------------------------- /src/utils/ptr_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/ptr_ext.rs -------------------------------------------------------------------------------- /src/utils/queue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/queue.rs -------------------------------------------------------------------------------- /src/utils/rc_eq.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/rc_eq.rs -------------------------------------------------------------------------------- /src/utils/refcounted.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/refcounted.rs -------------------------------------------------------------------------------- /src/utils/run_toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/run_toplevel.rs -------------------------------------------------------------------------------- /src/utils/scroller.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/scroller.rs -------------------------------------------------------------------------------- /src/utils/smallmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/smallmap.rs -------------------------------------------------------------------------------- /src/utils/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/stack.rs -------------------------------------------------------------------------------- /src/utils/string_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/string_ext.rs -------------------------------------------------------------------------------- /src/utils/syncqueue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/syncqueue.rs -------------------------------------------------------------------------------- /src/utils/threshold_counter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/threshold_counter.rs -------------------------------------------------------------------------------- /src/utils/timer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/timer.rs -------------------------------------------------------------------------------- /src/utils/toplevel_identifier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/toplevel_identifier.rs -------------------------------------------------------------------------------- /src/utils/transform_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/transform_ext.rs -------------------------------------------------------------------------------- /src/utils/tri.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/tri.rs -------------------------------------------------------------------------------- /src/utils/unlink_on_drop.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/unlink_on_drop.rs -------------------------------------------------------------------------------- /src/utils/vec_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/vec_ext.rs -------------------------------------------------------------------------------- /src/utils/vecdeque_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/vecdeque_ext.rs -------------------------------------------------------------------------------- /src/utils/vecset.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/vecset.rs -------------------------------------------------------------------------------- /src/utils/vecstorage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/vecstorage.rs -------------------------------------------------------------------------------- /src/utils/windows.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/windows.rs -------------------------------------------------------------------------------- /src/utils/xrd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/utils/xrd.rs -------------------------------------------------------------------------------- /src/version.rs: -------------------------------------------------------------------------------- 1 | include!(concat!(env!("OUT_DIR"), "/version.rs")); 2 | -------------------------------------------------------------------------------- /src/video.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video.rs -------------------------------------------------------------------------------- /src/video/dmabuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/dmabuf.rs -------------------------------------------------------------------------------- /src/video/drm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/drm.rs -------------------------------------------------------------------------------- /src/video/drm/sync_obj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/drm/sync_obj.rs -------------------------------------------------------------------------------- /src/video/drm/sys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/drm/sys.rs -------------------------------------------------------------------------------- /src/video/drm/wait_for_sync_obj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/drm/wait_for_sync_obj.rs -------------------------------------------------------------------------------- /src/video/gbm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/video/gbm.rs -------------------------------------------------------------------------------- /src/wheel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wheel.rs -------------------------------------------------------------------------------- /src/wire.rs: -------------------------------------------------------------------------------- 1 | #![allow(non_upper_case_globals)] 2 | 3 | include!(concat!(env!("OUT_DIR"), "/wire.rs")); 4 | -------------------------------------------------------------------------------- /src/wire_ei.rs: -------------------------------------------------------------------------------- 1 | #![allow(non_upper_case_globals)] 2 | 3 | include!(concat!(env!("OUT_DIR"), "/wire_ei.rs")); 4 | -------------------------------------------------------------------------------- /src/wire_xcon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wire_xcon.rs -------------------------------------------------------------------------------- /src/wl_usr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_jay_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_jay_output.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_jay_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_jay_pointer.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_jay_toplevel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_jay_toplevel.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_linux_dmabuf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_linux_dmabuf.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_buffer.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_callback.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_callback.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_display.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_output.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_pointer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_pointer.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_registry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_registry.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_seat.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_seat.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_shm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_shm.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_shm_pool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_shm_pool.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wl_surface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wl_surface.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_ifs/usr_wp_viewport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_ifs/usr_wp_viewport.rs -------------------------------------------------------------------------------- /src/wl_usr/usr_object.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/wl_usr/usr_object.rs -------------------------------------------------------------------------------- /src/xcon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon.rs -------------------------------------------------------------------------------- /src/xcon/consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/consts.rs -------------------------------------------------------------------------------- /src/xcon/formatter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/formatter.rs -------------------------------------------------------------------------------- /src/xcon/incoming.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/incoming.rs -------------------------------------------------------------------------------- /src/xcon/outgoing.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/outgoing.rs -------------------------------------------------------------------------------- /src/xcon/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/parser.rs -------------------------------------------------------------------------------- /src/xcon/wire_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/wire_type.rs -------------------------------------------------------------------------------- /src/xcon/xauthority.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xcon/xauthority.rs -------------------------------------------------------------------------------- /src/xwayland.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xwayland.rs -------------------------------------------------------------------------------- /src/xwayland/xsocket.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xwayland/xsocket.rs -------------------------------------------------------------------------------- /src/xwayland/xwm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/src/xwayland/xwm.rs -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /toml-config/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/Cargo.toml -------------------------------------------------------------------------------- /toml-config/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config.rs -------------------------------------------------------------------------------- /toml-config/src/config/context.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/context.rs -------------------------------------------------------------------------------- /toml-config/src/config/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/error.rs -------------------------------------------------------------------------------- /toml-config/src/config/extractor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/extractor.rs -------------------------------------------------------------------------------- /toml-config/src/config/keycodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/keycodes.rs -------------------------------------------------------------------------------- /toml-config/src/config/keysyms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/keysyms.rs -------------------------------------------------------------------------------- /toml-config/src/config/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parser.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers/env.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers/env.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers/exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers/exec.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers/idle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers/idle.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers/mode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers/mode.rs -------------------------------------------------------------------------------- /toml-config/src/config/parsers/vrr.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/parsers/vrr.rs -------------------------------------------------------------------------------- /toml-config/src/config/spanned.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/spanned.rs -------------------------------------------------------------------------------- /toml-config/src/config/value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/config/value.rs -------------------------------------------------------------------------------- /toml-config/src/default-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/default-config.toml -------------------------------------------------------------------------------- /toml-config/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/lib.rs -------------------------------------------------------------------------------- /toml-config/src/rules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/rules.rs -------------------------------------------------------------------------------- /toml-config/src/shortcuts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/shortcuts.rs -------------------------------------------------------------------------------- /toml-config/src/toml.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml.rs -------------------------------------------------------------------------------- /toml-config/src/toml/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml/tests.rs -------------------------------------------------------------------------------- /toml-config/src/toml/toml_lexer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml/toml_lexer.rs -------------------------------------------------------------------------------- /toml-config/src/toml/toml_parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml/toml_parser.rs -------------------------------------------------------------------------------- /toml-config/src/toml/toml_span.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml/toml_span.rs -------------------------------------------------------------------------------- /toml-config/src/toml/toml_value.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-config/src/toml/toml_value.rs -------------------------------------------------------------------------------- /toml-spec/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/Cargo.toml -------------------------------------------------------------------------------- /toml-spec/spec/spec.generated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/spec/spec.generated.json -------------------------------------------------------------------------------- /toml-spec/spec/spec.generated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/spec/spec.generated.md -------------------------------------------------------------------------------- /toml-spec/spec/spec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/spec/spec.yaml -------------------------------------------------------------------------------- /toml-spec/spec/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/spec/template.md -------------------------------------------------------------------------------- /toml-spec/src/json_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/src/json_schema.rs -------------------------------------------------------------------------------- /toml-spec/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/src/main.rs -------------------------------------------------------------------------------- /toml-spec/src/markdown.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/src/markdown.rs -------------------------------------------------------------------------------- /toml-spec/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/toml-spec/src/types.rs -------------------------------------------------------------------------------- /wire-dbus/org.freedesktop.DBus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-dbus/org.freedesktop.DBus.txt -------------------------------------------------------------------------------- /wire-dbus/org.freedesktop.impl.portal.Request.txt: -------------------------------------------------------------------------------- 1 | fn Close() { } 2 | -------------------------------------------------------------------------------- /wire-dbus/org.freedesktop.login1.Seat.txt: -------------------------------------------------------------------------------- 1 | fn SwitchTo(vtnr: u32) { 2 | } 3 | -------------------------------------------------------------------------------- /wire-dbus/org.freedesktop.systemd1.Manager.txt: -------------------------------------------------------------------------------- 1 | fn SetEnvironment( 2 | names: array(string), 3 | ) { 4 | } 5 | -------------------------------------------------------------------------------- /wire-ei/ei_button.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_button.txt -------------------------------------------------------------------------------- /wire-ei/ei_callback.txt: -------------------------------------------------------------------------------- 1 | event done { 2 | callback_data: u64, 3 | } 4 | -------------------------------------------------------------------------------- /wire-ei/ei_connection.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_connection.txt -------------------------------------------------------------------------------- /wire-ei/ei_device.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_device.txt -------------------------------------------------------------------------------- /wire-ei/ei_handshake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_handshake.txt -------------------------------------------------------------------------------- /wire-ei/ei_keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_keyboard.txt -------------------------------------------------------------------------------- /wire-ei/ei_pingpong.txt: -------------------------------------------------------------------------------- 1 | request done { 2 | callback_data: u64, 3 | } 4 | -------------------------------------------------------------------------------- /wire-ei/ei_pointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_pointer.txt -------------------------------------------------------------------------------- /wire-ei/ei_pointer_absolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_pointer_absolute.txt -------------------------------------------------------------------------------- /wire-ei/ei_scroll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_scroll.txt -------------------------------------------------------------------------------- /wire-ei/ei_seat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_seat.txt -------------------------------------------------------------------------------- /wire-ei/ei_touchscreen.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-ei/ei_touchscreen.txt -------------------------------------------------------------------------------- /wire-to-xml/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-to-xml/Cargo.toml -------------------------------------------------------------------------------- /wire-to-xml/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-to-xml/src/main.rs -------------------------------------------------------------------------------- /wire-xcon/composite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/composite.txt -------------------------------------------------------------------------------- /wire-xcon/dri3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/dri3.txt -------------------------------------------------------------------------------- /wire-xcon/present.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/present.txt -------------------------------------------------------------------------------- /wire-xcon/render.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/render.txt -------------------------------------------------------------------------------- /wire-xcon/res.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/res.txt -------------------------------------------------------------------------------- /wire-xcon/xfixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/xfixes.txt -------------------------------------------------------------------------------- /wire-xcon/xinput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/xinput.txt -------------------------------------------------------------------------------- /wire-xcon/xkb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/xkb.txt -------------------------------------------------------------------------------- /wire-xcon/xproto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire-xcon/xproto.txt -------------------------------------------------------------------------------- /wire/ext_data_control_device_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_data_control_device_v1.txt -------------------------------------------------------------------------------- /wire/ext_data_control_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_data_control_manager_v1.txt -------------------------------------------------------------------------------- /wire/ext_data_control_offer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_data_control_offer_v1.txt -------------------------------------------------------------------------------- /wire/ext_data_control_source_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_data_control_source_v1.txt -------------------------------------------------------------------------------- /wire/ext_foreign_toplevel_list_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_foreign_toplevel_list_v1.txt -------------------------------------------------------------------------------- /wire/ext_idle_notification_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_idle_notification_v1.txt -------------------------------------------------------------------------------- /wire/ext_idle_notifier_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_idle_notifier_v1.txt -------------------------------------------------------------------------------- /wire/ext_image_capture_source_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_image_capture_source_v1.txt -------------------------------------------------------------------------------- /wire/ext_session_lock_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_session_lock_manager_v1.txt -------------------------------------------------------------------------------- /wire/ext_session_lock_surface_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_session_lock_surface_v1.txt -------------------------------------------------------------------------------- /wire/ext_session_lock_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_session_lock_v1.txt -------------------------------------------------------------------------------- /wire/ext_transient_seat_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_transient_seat_manager_v1.txt -------------------------------------------------------------------------------- /wire/ext_transient_seat_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_transient_seat_v1.txt -------------------------------------------------------------------------------- /wire/ext_workspace_group_handle_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_workspace_group_handle_v1.txt -------------------------------------------------------------------------------- /wire/ext_workspace_handle_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_workspace_handle_v1.txt -------------------------------------------------------------------------------- /wire/ext_workspace_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/ext_workspace_manager_v1.txt -------------------------------------------------------------------------------- /wire/jay_client_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_client_query.txt -------------------------------------------------------------------------------- /wire/jay_color_management.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_color_management.txt -------------------------------------------------------------------------------- /wire/jay_compositor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_compositor.txt -------------------------------------------------------------------------------- /wire/jay_damage_tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_damage_tracking.txt -------------------------------------------------------------------------------- /wire/jay_ei_session.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_ei_session.txt -------------------------------------------------------------------------------- /wire/jay_ei_session_builder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_ei_session_builder.txt -------------------------------------------------------------------------------- /wire/jay_head_error_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_error_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_core_info_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_core_info_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_format_info_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_format_info_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_format_setter_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_format_setter_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_mode_info_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_mode_info_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_mode_setter_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_mode_setter_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_tearing_state_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_tearing_state_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_ext_vrr_state_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_ext_vrr_state_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_manager_session_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_manager_session_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_manager_v1.txt -------------------------------------------------------------------------------- /wire/jay_head_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_head_v1.txt -------------------------------------------------------------------------------- /wire/jay_idle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_idle.txt -------------------------------------------------------------------------------- /wire/jay_input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_input.txt -------------------------------------------------------------------------------- /wire/jay_log_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_log_file.txt -------------------------------------------------------------------------------- /wire/jay_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_output.txt -------------------------------------------------------------------------------- /wire/jay_pointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_pointer.txt -------------------------------------------------------------------------------- /wire/jay_randr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_randr.txt -------------------------------------------------------------------------------- /wire/jay_reexec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_reexec.txt -------------------------------------------------------------------------------- /wire/jay_render_ctx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_render_ctx.txt -------------------------------------------------------------------------------- /wire/jay_screencast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_screencast.txt -------------------------------------------------------------------------------- /wire/jay_screenshot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_screenshot.txt -------------------------------------------------------------------------------- /wire/jay_seat_events.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_seat_events.txt -------------------------------------------------------------------------------- /wire/jay_select_toplevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_select_toplevel.txt -------------------------------------------------------------------------------- /wire/jay_select_workspace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_select_workspace.txt -------------------------------------------------------------------------------- /wire/jay_toplevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_toplevel.txt -------------------------------------------------------------------------------- /wire/jay_tray_item_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_tray_item_v1.txt -------------------------------------------------------------------------------- /wire/jay_tray_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_tray_v1.txt -------------------------------------------------------------------------------- /wire/jay_tree_query.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_tree_query.txt -------------------------------------------------------------------------------- /wire/jay_workspace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_workspace.txt -------------------------------------------------------------------------------- /wire/jay_workspace_watcher.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_workspace_watcher.txt -------------------------------------------------------------------------------- /wire/jay_xwayland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/jay_xwayland.txt -------------------------------------------------------------------------------- /wire/wl_buffer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_buffer.txt -------------------------------------------------------------------------------- /wire/wl_callback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_callback.txt -------------------------------------------------------------------------------- /wire/wl_compositor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_compositor.txt -------------------------------------------------------------------------------- /wire/wl_data_device.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_data_device.txt -------------------------------------------------------------------------------- /wire/wl_data_device_manager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_data_device_manager.txt -------------------------------------------------------------------------------- /wire/wl_data_offer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_data_offer.txt -------------------------------------------------------------------------------- /wire/wl_data_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_data_source.txt -------------------------------------------------------------------------------- /wire/wl_display.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_display.txt -------------------------------------------------------------------------------- /wire/wl_drm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_drm.txt -------------------------------------------------------------------------------- /wire/wl_fixes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_fixes.txt -------------------------------------------------------------------------------- /wire/wl_keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_keyboard.txt -------------------------------------------------------------------------------- /wire/wl_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_output.txt -------------------------------------------------------------------------------- /wire/wl_pointer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_pointer.txt -------------------------------------------------------------------------------- /wire/wl_region.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_region.txt -------------------------------------------------------------------------------- /wire/wl_registry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_registry.txt -------------------------------------------------------------------------------- /wire/wl_seat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_seat.txt -------------------------------------------------------------------------------- /wire/wl_shm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_shm.txt -------------------------------------------------------------------------------- /wire/wl_shm_pool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_shm_pool.txt -------------------------------------------------------------------------------- /wire/wl_subcompositor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_subcompositor.txt -------------------------------------------------------------------------------- /wire/wl_subsurface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_subsurface.txt -------------------------------------------------------------------------------- /wire/wl_surface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_surface.txt -------------------------------------------------------------------------------- /wire/wl_touch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wl_touch.txt -------------------------------------------------------------------------------- /wire/wp_alpha_modifier_surface_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_alpha_modifier_surface_v1.txt -------------------------------------------------------------------------------- /wire/wp_alpha_modifier_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_alpha_modifier_v1.txt -------------------------------------------------------------------------------- /wire/wp_color_management_output_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_color_management_output_v1.txt -------------------------------------------------------------------------------- /wire/wp_color_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_color_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_commit_timer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_commit_timer_v1.txt -------------------------------------------------------------------------------- /wire/wp_commit_timing_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_commit_timing_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_content_type_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_content_type_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_content_type_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_content_type_v1.txt -------------------------------------------------------------------------------- /wire/wp_cursor_shape_device_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_cursor_shape_device_v1.txt -------------------------------------------------------------------------------- /wire/wp_cursor_shape_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_cursor_shape_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_drm_lease_connector_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_drm_lease_connector_v1.txt -------------------------------------------------------------------------------- /wire/wp_drm_lease_device_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_drm_lease_device_v1.txt -------------------------------------------------------------------------------- /wire/wp_drm_lease_request_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_drm_lease_request_v1.txt -------------------------------------------------------------------------------- /wire/wp_drm_lease_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_drm_lease_v1.txt -------------------------------------------------------------------------------- /wire/wp_fifo_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_fifo_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_fifo_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_fifo_v1.txt -------------------------------------------------------------------------------- /wire/wp_fractional_scale_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_fractional_scale_v1.txt -------------------------------------------------------------------------------- /wire/wp_image_description_info_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_image_description_info_v1.txt -------------------------------------------------------------------------------- /wire/wp_image_description_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_image_description_v1.txt -------------------------------------------------------------------------------- /wire/wp_pointer_warp_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_pointer_warp_v1.txt -------------------------------------------------------------------------------- /wire/wp_presentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_presentation.txt -------------------------------------------------------------------------------- /wire/wp_presentation_feedback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_presentation_feedback.txt -------------------------------------------------------------------------------- /wire/wp_security_context_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_security_context_v1.txt -------------------------------------------------------------------------------- /wire/wp_tearing_control_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_tearing_control_manager_v1.txt -------------------------------------------------------------------------------- /wire/wp_tearing_control_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_tearing_control_v1.txt -------------------------------------------------------------------------------- /wire/wp_viewport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_viewport.txt -------------------------------------------------------------------------------- /wire/wp_viewporter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/wp_viewporter.txt -------------------------------------------------------------------------------- /wire/xdg_activation_token_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_activation_token_v1.txt -------------------------------------------------------------------------------- /wire/xdg_activation_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_activation_v1.txt -------------------------------------------------------------------------------- /wire/xdg_dialog_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_dialog_v1.txt -------------------------------------------------------------------------------- /wire/xdg_popup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_popup.txt -------------------------------------------------------------------------------- /wire/xdg_positioner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_positioner.txt -------------------------------------------------------------------------------- /wire/xdg_surface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_surface.txt -------------------------------------------------------------------------------- /wire/xdg_toplevel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_toplevel.txt -------------------------------------------------------------------------------- /wire/xdg_toplevel_drag_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_toplevel_drag_manager_v1.txt -------------------------------------------------------------------------------- /wire/xdg_toplevel_drag_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_toplevel_drag_v1.txt -------------------------------------------------------------------------------- /wire/xdg_toplevel_tag_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_toplevel_tag_manager_v1.txt -------------------------------------------------------------------------------- /wire/xdg_wm_base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_wm_base.txt -------------------------------------------------------------------------------- /wire/xdg_wm_dialog_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xdg_wm_dialog_v1.txt -------------------------------------------------------------------------------- /wire/xwayland_shell_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xwayland_shell_v1.txt -------------------------------------------------------------------------------- /wire/xwayland_surface_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/xwayland_surface_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_data_control_device_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_data_control_device_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_data_control_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_data_control_manager_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_data_control_offer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_data_control_offer_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_data_control_source_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_data_control_source_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_layer_shell_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_layer_shell_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_layer_surface_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_layer_surface_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_output_configuration_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_output_configuration_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_output_head_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_output_head_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_output_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_output_manager_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_output_mode_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_output_mode_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_screencopy_frame_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_screencopy_frame_v1.txt -------------------------------------------------------------------------------- /wire/zwlr_screencopy_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwlr_screencopy_manager_v1.txt -------------------------------------------------------------------------------- /wire/zwp_confined_pointer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_confined_pointer_v1.txt -------------------------------------------------------------------------------- /wire/zwp_idle_inhibit_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_idle_inhibit_manager_v1.txt -------------------------------------------------------------------------------- /wire/zwp_idle_inhibitor_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_idle_inhibitor_v1.txt -------------------------------------------------------------------------------- /wire/zwp_input_method_manager_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_input_method_manager_v2.txt -------------------------------------------------------------------------------- /wire/zwp_input_method_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_input_method_v2.txt -------------------------------------------------------------------------------- /wire/zwp_input_popup_surface_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_input_popup_surface_v2.txt -------------------------------------------------------------------------------- /wire/zwp_linux_buffer_params_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_linux_buffer_params_v1.txt -------------------------------------------------------------------------------- /wire/zwp_linux_dmabuf_feedback_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_linux_dmabuf_feedback_v1.txt -------------------------------------------------------------------------------- /wire/zwp_linux_dmabuf_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_linux_dmabuf_v1.txt -------------------------------------------------------------------------------- /wire/zwp_locked_pointer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_locked_pointer_v1.txt -------------------------------------------------------------------------------- /wire/zwp_pointer_constraints_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_pointer_constraints_v1.txt -------------------------------------------------------------------------------- /wire/zwp_pointer_gesture_hold_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_pointer_gesture_hold_v1.txt -------------------------------------------------------------------------------- /wire/zwp_pointer_gesture_pinch_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_pointer_gesture_pinch_v1.txt -------------------------------------------------------------------------------- /wire/zwp_pointer_gesture_swipe_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_pointer_gesture_swipe_v1.txt -------------------------------------------------------------------------------- /wire/zwp_pointer_gestures_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_pointer_gestures_v1.txt -------------------------------------------------------------------------------- /wire/zwp_relative_pointer_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_relative_pointer_v1.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_manager_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_manager_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_pad_dial_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_pad_dial_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_pad_group_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_pad_group_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_pad_ring_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_pad_ring_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_pad_strip_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_pad_strip_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_pad_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_pad_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_seat_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_seat_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_tool_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_tool_v2.txt -------------------------------------------------------------------------------- /wire/zwp_tablet_v2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_tablet_v2.txt -------------------------------------------------------------------------------- /wire/zwp_text_input_manager_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_text_input_manager_v3.txt -------------------------------------------------------------------------------- /wire/zwp_text_input_v3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_text_input_v3.txt -------------------------------------------------------------------------------- /wire/zwp_virtual_keyboard_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zwp_virtual_keyboard_v1.txt -------------------------------------------------------------------------------- /wire/zxdg_decoration_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zxdg_decoration_manager_v1.txt -------------------------------------------------------------------------------- /wire/zxdg_output_manager_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zxdg_output_manager_v1.txt -------------------------------------------------------------------------------- /wire/zxdg_output_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zxdg_output_v1.txt -------------------------------------------------------------------------------- /wire/zxdg_toplevel_decoration_v1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/wire/zxdg_toplevel_decoration_v1.txt -------------------------------------------------------------------------------- /xml-to-wire/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/xml-to-wire/Cargo.toml -------------------------------------------------------------------------------- /xml-to-wire/src/ast.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/xml-to-wire/src/ast.rs -------------------------------------------------------------------------------- /xml-to-wire/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/xml-to-wire/src/builder.rs -------------------------------------------------------------------------------- /xml-to-wire/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/xml-to-wire/src/main.rs -------------------------------------------------------------------------------- /xml-to-wire/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahkoh/jay/HEAD/xml-to-wire/src/parser.rs --------------------------------------------------------------------------------