gpu: add AlphaMode enum

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-10 21:29:56 -07:00 committed by Stephen Gutekanst
parent 4163005eb5
commit 8ca3d666a3
3 changed files with 7 additions and 6 deletions

4
gpu/src/types.zig Normal file
View file

@ -0,0 +1,4 @@
pub const AlphaMode = enum(u32) {
premultiplied = 0x00000000,
unpremultiplied = 0x00000001,
};