all: import split crates directly
This commit is contained in:
parent
bfc2a525de
commit
dc62d2240f
247 changed files with 737 additions and 550 deletions
26
src/text.rs
26
src/text.rs
|
|
@ -1,24 +1,26 @@
|
|||
use jay_udmabuf::UdmabufHolder;
|
||||
use jay_theme::Color;
|
||||
use jay_geometry::{Rect, Region};
|
||||
use jay_cpu_worker::{AsyncCpuWork, CpuJob, CpuWork, CpuWorker, PendingJob};
|
||||
use jay_pango::{
|
||||
CairoContext, CairoImageSurface, PangoCairoContext, PangoError, PangoFontDescription,
|
||||
PangoLayout, cairo_size,
|
||||
consts::{
|
||||
CAIRO_FORMAT_ARGB32, CAIRO_OPERATOR_SOURCE, CairoFormat, PANGO_ELLIPSIZE_END, PANGO_SCALE,
|
||||
},
|
||||
};
|
||||
use {
|
||||
crate::{
|
||||
cmm::cmm_eotf::Eotf,
|
||||
cpu_worker::{AsyncCpuWork, CpuJob, CpuWork, CpuWorker, PendingJob},
|
||||
|
||||
format::{ARGB8888, Format},
|
||||
gfx_api::{
|
||||
AsyncShmGfxTexture, AsyncShmGfxTextureCallback, GfxBuffer, GfxContext, GfxError,
|
||||
GfxStagingBuffer, GfxTexture, PendingShmTransfer, STAGING_UPLOAD,
|
||||
},
|
||||
pango::{
|
||||
CairoContext, CairoImageSurface, PangoCairoContext, PangoError, PangoFontDescription,
|
||||
PangoLayout, cairo_size,
|
||||
consts::{
|
||||
CAIRO_FORMAT_ARGB32, CAIRO_OPERATOR_SOURCE, CairoFormat, PANGO_ELLIPSIZE_END,
|
||||
PANGO_SCALE,
|
||||
},
|
||||
},
|
||||
rect::{Rect, Region},
|
||||
state::State,
|
||||
theme::Color,
|
||||
udmabuf::UdmabufHolder,
|
||||
|
||||
|
||||
utils::{
|
||||
clonecell::CloneCell,
|
||||
double_buffered::DoubleBuffered,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue