File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Load Diff This file was deleted.
Original file line number Diff line number Diff line change 88//! event/render loop.
99//! - `math`: minimal vector/matrix utilities used by examples and helpers.
1010//!
11- //! See runnable examples in `crates/lambda-rs/examples/` and integration tests
12- //! under `crates/lambda-rs/tests/` for typical usage patterns.
11+ //! See runnable demos under `demos/` and the minimal rustdoc reference example
12+ //! under `crates/lambda-rs/examples/` for typical usage patterns. Integration
13+ //! tests live under `crates/lambda-rs/tests/`.
1314
1415pub mod component;
1516pub mod events;
Original file line number Diff line number Diff line change 1515//! `SetBindGroup` time. Offsets MUST follow the device’s
1616//! `min_uniform_buffer_offset_alignment`.
1717//!
18- //! See `crates/lambda-rs/examples /uniform_buffer_triangle.rs` for a complete
18+ //! See `demos/render/src/bin /uniform_buffer_triangle.rs` for a complete
1919//! example.
2020
2121use std:: rc:: Rc ;
Original file line number Diff line number Diff line change 1616//! - Creating a vertex buffer from a mesh: `BufferBuilder::build_from_mesh`.
1717//! - Creating a uniform buffer and updating it each frame:
1818//! see `UniformBuffer<T>` below and the runnable example
19- //! `crates/lambda-rs/examples /uniform_buffer_triangle.rs`.
19+ //! `demos/render/src/bin /uniform_buffer_triangle.rs`.
2020
2121use std:: rc:: Rc ;
2222
Original file line number Diff line number Diff line change 2222//! 3) Record a `Vec<RenderCommand>` each frame and pass it to
2323//! `RenderContext::render`.
2424//!
25- //! See workspace examples under `crates/lambda-rs/examples/` for runnable
26- //! end‑to‑end snippets.
25+ //! See runnable demos under `demos/render/src/bin/` for end‑to‑end snippets.
2726
2827// Module Exports
2928pub mod bind;
You can’t perform that action at this time.
0 commit comments