1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//! A set of useful descriptors for blending colours!

use crate as wgpu;

pub const NORMAL: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::SrcAlpha,
    dst_factor: wgpu::BlendFactor::OneMinusSrcAlpha,
    operation: wgpu::BlendOperation::Add,
};

pub const ADD: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::Src,
    dst_factor: wgpu::BlendFactor::Dst,
    operation: wgpu::BlendOperation::Add,
};

pub const SUBTRACT: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::Src,
    dst_factor: wgpu::BlendFactor::Dst,
    operation: wgpu::BlendOperation::Subtract,
};

pub const REVERSE_SUBTRACT: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::Src,
    dst_factor: wgpu::BlendFactor::Dst,
    operation: wgpu::BlendOperation::ReverseSubtract,
};

pub const DARKEST: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::One,
    dst_factor: wgpu::BlendFactor::One,
    operation: wgpu::BlendOperation::Min,
};

pub const LIGHTEST: wgpu::BlendComponent = wgpu::BlendComponent {
    src_factor: wgpu::BlendFactor::One,
    dst_factor: wgpu::BlendFactor::One,
    operation: wgpu::BlendOperation::Max,
};