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
17
18
// @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::void::VoidRegistration`.

pub mod camera;
pub mod noise;
pub mod screenshare;

use crate::gpu::void::VoidRegistration;

#[rustfmt::skip]
pub fn registrations() -> Vec<VoidRegistration> {
    vec![
        camera::register(),
        noise::register(),
        screenshare::register(),
    ]
}