darkly 0.5.0

A GPU-native paint engine on wgpu: brushes, layers, blend modes, masks, selections, and undo.
Documentation
// @generated by build.rs — do not edit manually.
// To add a new module, create a .rs file in this directory
// that exports `pub fn register() -> crate::document::layer_kind::LayerKindRegistration`.

pub mod filter;
pub mod group;
pub mod raster;
pub mod void;

use crate::document::layer_kind::LayerKindRegistration;

#[rustfmt::skip]
pub fn registrations() -> Vec<LayerKindRegistration> {
    vec![
        filter::register(),
        group::register(),
        raster::register(),
        void::register(),
    ]
}