mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 23:38:06 +08:00
* gcore-shaders: add crate, move `color` and `blending` from gcore * gcore-shaders: move `AsU32` * gcore-shaders: move `ChoiceType`, switch `Cow` for `&str`, adjust node macro * gcore-shaders: move `registry::types` * gcore-shaders: move `context::Ctx` * raster-nodes: make it `no_std` with `std` feature * gcore-shaders: fix doctest
25 lines
505 B
Rust
25 lines
505 B
Rust
#![cfg_attr(not(feature = "std"), no_std)]
|
|
|
|
#[cfg(not(feature = "std"))]
|
|
pub use graphene_core_shaders::glam;
|
|
|
|
pub mod adjust;
|
|
pub mod adjustments;
|
|
pub mod blending_nodes;
|
|
pub mod cubic_spline;
|
|
|
|
#[cfg(feature = "std")]
|
|
pub mod curve;
|
|
#[cfg(feature = "std")]
|
|
pub mod dehaze;
|
|
#[cfg(feature = "std")]
|
|
pub mod filter;
|
|
#[cfg(feature = "std")]
|
|
pub mod generate_curves;
|
|
#[cfg(feature = "std")]
|
|
pub mod gradient_map;
|
|
#[cfg(feature = "std")]
|
|
pub mod image_color_palette;
|
|
#[cfg(feature = "std")]
|
|
pub mod std_nodes;
|