1
0
Fork 0
forked from wry/wry

theme: move shared state into workspace crate

This commit is contained in:
kossLAN 2026-05-29 11:37:04 -04:00
parent 854e0474be
commit 37ec1a4a3f
No known key found for this signature in database
11 changed files with 977 additions and 942 deletions

7
gfx-types/src/lib.rs Normal file
View file

@ -0,0 +1,7 @@
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Default)]
pub enum AlphaMode {
#[default]
PremultipliedElectrical,
PremultipliedOptical,
Straight,
}