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
15
16
// @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::filter::FilterEntityRegistration`.

pub mod mask;
pub mod selection;

use crate::document::filter::FilterEntityRegistration;

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