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::gpu::filter::FilterPipelineRegistration`.

pub mod invert;

use crate::gpu::filter::FilterPipelineRegistration;

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