1
0
Fork 0
forked from wry/wry

all: import split crates directly

This commit is contained in:
kossLAN 2026-06-07 13:37:22 -04:00
parent bfc2a525de
commit dc62d2240f
No known key found for this signature in database
247 changed files with 737 additions and 550 deletions

View file

@ -1,5 +1,6 @@
use {
crate::{theme::Color, utils::errorfmt::ErrorFmt},
crate::utils::errorfmt::ErrorFmt,
jay_theme::Color,
std::ops::Range,
};

View file

@ -1,8 +1,9 @@
use jay_logger::Logger;
use {
crate::{
cli::{GlobalArgs, json::jsonl},
compositor::config_dir,
logger::Logger,
utils::errorfmt::ErrorFmt,
},
clap::{Args, Subcommand},

View file

@ -1,3 +1,5 @@
use std::time::Duration;
use jay_units::scale::Scale;
use {
crate::{
backend::{BackendColorSpace, BackendEotfs},
@ -11,7 +13,6 @@ use {
cmm::cmm_primaries::Primaries,
format::{Format, XRGB8888},
ifs::wl_output::BlendSpace,
scale::Scale,
tools::tool_client::{Handle, ToolClient, with_tool_client},
tree::Transform,
utils::{errorfmt::ErrorFmt, ordered_float::F64, static_text::StaticText},
@ -29,7 +30,7 @@ use {
fmt::{self, Display, Formatter},
rc::Rc,
str::FromStr,
time::Duration,
},
thiserror::Error,
};

View file

@ -1,12 +1,14 @@
use jay_udmabuf::{Udmabuf, UdmabufError};
use jay_eventfd_cache::EventfdCache;
use {
crate::{
allocator::{Allocator, AllocatorError, BufferUsage, MappedBuffer},
cli::{GlobalArgs, ScreenshotArgs, ScreenshotFormat},
eventfd_cache::EventfdCache,
format::XRGB8888,
gfx_apis,
tools::tool_client::{Handle, ToolClient, with_tool_client},
udmabuf::{Udmabuf, UdmabufError},
utils::{errorfmt::ErrorFmt, queue::AsyncQueue, windows::WindowsExt},
video::{
dmabuf::{DmaBuf, DmaBufIds, DmaBufPlane, PlaneVec},

View file

@ -1,10 +1,10 @@
use jay_units::fixed::Fixed;
use {
crate::{
cli::{
GlobalArgs, SeatTestArgs,
json::{JsonAxisData, JsonSeatEvent, jsonl},
},
fixed::Fixed,
ifs::wl_seat::wl_pointer::{
CONTINUOUS, FINGER, HORIZONTAL_SCROLL, PendingScroll, VERTICAL_SCROLL, WHEEL,
},

View file

@ -1,3 +1,4 @@
use jay_geometry::Rect;
use {
crate::{
cli::{
@ -10,7 +11,7 @@ use {
TREE_TY_LOCK_SURFACE, TREE_TY_OUTPUT, TREE_TY_PLACEHOLDER, TREE_TY_WORKSPACE,
TREE_TY_X_WINDOW, TREE_TY_XDG_POPUP, TREE_TY_XDG_TOPLEVEL,
},
rect::Rect,
tools::tool_client::{Handle, ToolClient, with_tool_client},
wire::{JayCompositorId, JayTreeQueryId, jay_client_query, jay_compositor, jay_tree_query},
},