gpu: implement PresentMode enums
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
53435cd134
commit
c852ea9532
1 changed files with 6 additions and 0 deletions
6
gpu/src/present_mode.zig
Normal file
6
gpu/src/present_mode.zig
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
pub const PresentMode = enum(u32) {
|
||||
// TODO: zig enums are not CamelCase
|
||||
Immediate = 0x00000000,
|
||||
Mailbox = 0x00000001,
|
||||
Fifo = 0x00000002,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue