tessera-ui-basic-components 2.7.0

Basic components for tessera-ui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Blur pipeline module.
//!
//! This module provides GPU-based blur effect rendering pipelines and commands for use in Tessera UI components.
//!
//! # Example
//!
//! ```
//! use tessera_ui_basic_components::pipelines::blur::command::DualBlurCommand;
//! use tessera_ui_basic_components::pipelines::blur::pipeline::BlurPipeline;
//!
//! // Create and use BlurPipeline and DualBlurCommand in your rendering logic.
//! ```

pub mod command;
pub mod pipeline;