darkly 0.5.0

A GPU-native paint engine on wgpu: brushes, layers, blend modes, masks, selections, and undo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// @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::brush::stabilizer::StabilizerRegistration`.

pub mod laplacian;

use crate::brush::stabilizer::StabilizerRegistration;

#[rustfmt::skip]
pub fn registrations() -> Vec<StabilizerRegistration> {
    vec![
        laplacian::register(),
    ]
}