Bump to 0.2.0: SW/GLES paint parity, shared font resolution, FrameState refactor, docs and packaging fixes
Rendering parity (software ↔ GLES). The software backend now rounds glyph pen positions and image destinations to the nearest integer pixel, matching what the GLES backend already did; previously it truncated, so text and 1:1 images could land up to half a pixel off between the two backends and the bilinear sample read ~1 px softer than the source. Gradients and shadows are deliberately left unimplemented on the software backend, and the GLES multi-rect `glScissor` clip is left coarse on purpose: making it exact would need stencil bits the EGL config does not carry, or routing the partial-redraw path through the offscreen clip layer, which would break its `fill` / `clear_rects_transparent` scissor semantics. Adds software-backend pixel tests covering the snapping. Font resolution unification. The system-font candidate chain, `find_font_opt` and `load_default_font_bytes` lived in two copies (`render/helpers` and `gles_render/helpers`) that had already diverged — one resolved through `find_font_opt`, the other inlined the candidate loop — and now live once in `system_fonts`. The two per-backend `OnceLock` default-font caches and `primary_handle` collapse into a single `system_fonts::default_handle`. Module docs and the `font_registry` caller are updated accordingly. Shared image validation and rect inflation. `draw_image_data`'s dimension check and its one-line warning were byte-duplicated across both backends and are now `render::helpers::validate_rgba_dims`. The six manual symmetric `Rect`-inflate literals in the GLES primitives reuse the existing `Rect::expand`. FrameState and DrawCtx de-duplication. The eleven `SurfaceState` fields the draw pass owns and threads through `DrawCtx` — `widget_rects`, the cursor / selection maps, the scroll state, `accessible_extras`, `prev_focused` / `prev_hovered` / `prev_pressed` — move into a `FrameState` sub-struct. The per-frame `build_draw_ctx` / `commit_draw_ctx` helpers can then borrow `&mut ss.frame`, disjoint from `ss.canvas` and `ss.pool`, so the four frame paths (software / GLES × full / partial) replace their duplicated `DrawCtx` construction and write-back with a single helper call each. A whole-`SurfaceState` borrow could not express this (partial borrows do not cross function boundaries), which is why the helpers take the sub-struct. `content_dirty` stays on `SurfaceState` — it is an invalidation flag, not frame state — and is reset at the call site. rich_text tests. Adds the previously-missing `tests.rs` for the `RichText` widget: one hit rect per visual line a link spans (the widget's core invariant), the single-line and no-link cases, preferred-size growth with hard line breaks, and `map_msg` range preservation — all headless against a software `Canvas`, with line counts forced by `\n` so they do not depend on any system font's measured width. Documentation. Fills the rustdoc gaps on the embedder-facing surface: `core::UiSurface` accessors, the `egl_context` public API, the `GlesCanvas` methods, `theme::typography` and `theme::error`, and the `RichText` / `Text` builders; adds a crate-level "Rendering backends" overview. `CHANGELOG.md` is added (0.2.0 / 0.1.0), and `docs/widgets.md` / `docs/cookbook.md` gain `rich_text`, `external`, and the CPU-draw / path-clip / externally-laid-out-tree recipes. `debian/changelog` gets the 0.2.0-1 entry. Private intra-doc links to `system_fonts` are demoted to code spans so `cargo doc` is warning-free. Packaging. The `libltk-dev` registry crate shipped a `Cargo.toml` declaring the `lookup` bench while the `Makefile` install copied only `src/`, so Cargo refused to parse the manifest over a missing `benches/lookup.rs`; the install now ships `benches/` as well (the file alone satisfies the parse — criterion is a dev-dependency and is not resolved when the crate is consumed as a library). `Cargo.toml` is bumped to 0.2.0 to match the package version and the `ltk-0.2.0` registry directory.
This commit is contained in:
@@ -638,12 +638,12 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
focus_id: 0,
|
||||
is_main: true,
|
||||
label: None,
|
||||
widget_rects: &data.main.widget_rects,
|
||||
extras: &data.main.accessible_extras,
|
||||
widget_rects: &data.main.frame.widget_rects,
|
||||
extras: &data.main.frame.accessible_extras,
|
||||
focused_idx: data.main.focused_idx,
|
||||
pressed_idx: data.main.gesture.pressed_idx,
|
||||
pending_text_values: &data.main.pending_text_values,
|
||||
cursor_state: &data.main.cursor_state,
|
||||
cursor_state: &data.main.frame.cursor_state,
|
||||
width: main_w,
|
||||
height: main_h,
|
||||
offset_x: 0.0,
|
||||
@@ -657,12 +657,12 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
focus_id: *fid,
|
||||
is_main: false,
|
||||
label: None,
|
||||
widget_rects: &ss.widget_rects,
|
||||
extras: &ss.accessible_extras,
|
||||
widget_rects: &ss.frame.widget_rects,
|
||||
extras: &ss.frame.accessible_extras,
|
||||
focused_idx: ss.focused_idx,
|
||||
pressed_idx: ss.gesture.pressed_idx,
|
||||
pending_text_values: &ss.pending_text_values,
|
||||
cursor_state: &ss.cursor_state,
|
||||
cursor_state: &ss.frame.cursor_state,
|
||||
width: ss.width as f32,
|
||||
height: ss.height as f32,
|
||||
offset_x: *ox,
|
||||
@@ -711,8 +711,8 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
};
|
||||
let widget = match focus_target
|
||||
{
|
||||
SurfaceFocus::Main => data.main.widget_rects.iter().find( |w| w.flat_idx == idx ).cloned(),
|
||||
SurfaceFocus::Overlay( id ) => data.overlays.get( &id ).and_then( |ss| ss.widget_rects.iter().find( |w| w.flat_idx == idx ).cloned() ),
|
||||
SurfaceFocus::Main => data.main.frame.widget_rects.iter().find( |w| w.flat_idx == idx ).cloned(),
|
||||
SurfaceFocus::Overlay( id ) => data.overlays.get( &id ).and_then( |ss| ss.frame.widget_rects.iter().find( |w| w.flat_idx == idx ).cloned() ),
|
||||
};
|
||||
match req.action
|
||||
{
|
||||
@@ -786,10 +786,10 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
};
|
||||
if let Some( ss ) = ss
|
||||
{
|
||||
if let Some( ( _, _, _ ) ) = ss.scroll_rects.last().copied()
|
||||
if let Some( ( _, _, _ ) ) = ss.frame.scroll_rects.last().copied()
|
||||
{
|
||||
let scroll_idx = ss.scroll_rects.last().unwrap().1;
|
||||
let entry = ss.scroll_offsets.entry( scroll_idx ).or_insert( ( 0.0, 0.0 ) );
|
||||
let scroll_idx = ss.frame.scroll_rects.last().unwrap().1;
|
||||
let entry = ss.frame.scroll_offsets.entry( scroll_idx ).or_insert( ( 0.0, 0.0 ) );
|
||||
entry.0 = ( entry.0 + dx ).max( 0.0 );
|
||||
entry.1 = ( entry.1 + dy ).max( 0.0 );
|
||||
ss.request_redraw();
|
||||
@@ -808,12 +808,12 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
{
|
||||
let target = w.rect;
|
||||
let probe = crate::types::Point { x: target.x + 1.0, y: target.y + 1.0 };
|
||||
let container = ss.scroll_rects.iter().rev()
|
||||
let container = ss.frame.scroll_rects.iter().rev()
|
||||
.find( |( r, _, _ )| r.contains( probe ) )
|
||||
.copied();
|
||||
if let Some( ( r, idx, _ ) ) = container
|
||||
{
|
||||
let entry = ss.scroll_offsets.entry( idx ).or_insert( ( 0.0, 0.0 ) );
|
||||
let entry = ss.frame.scroll_offsets.entry( idx ).or_insert( ( 0.0, 0.0 ) );
|
||||
if target.y < r.y { entry.1 -= r.y - target.y; }
|
||||
if target.y + target.height > r.y + r.height
|
||||
{
|
||||
@@ -842,14 +842,14 @@ pub( crate ) fn try_run<A: App>( app: A ) -> Result<(), RunError>
|
||||
let focus_id = data.app.take_focus_request().or_else( || data.focus_retry.take() );
|
||||
if let Some( id ) = focus_id
|
||||
{
|
||||
let mut hit: Option<( SurfaceFocus, usize )> = data.main.widget_rects.iter()
|
||||
let mut hit: Option<( SurfaceFocus, usize )> = data.main.frame.widget_rects.iter()
|
||||
.find( |w| w.id == Some( id ) )
|
||||
.map( |w| ( SurfaceFocus::Main, w.flat_idx ) );
|
||||
if hit.is_none()
|
||||
{
|
||||
for ( ov_id, surf ) in &data.overlays
|
||||
{
|
||||
if let Some( w ) = surf.widget_rects.iter().find( |w| w.id == Some( id ) )
|
||||
if let Some( w ) = surf.frame.widget_rects.iter().find( |w| w.id == Some( id ) )
|
||||
{
|
||||
hit = Some( ( SurfaceFocus::Overlay( *ov_id ), w.flat_idx ) );
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user