mach/gpu/src/Queue.zig
Stephen Gutekanst 9f6a3f119a gpu: add Queue.WorkDoneStatus enum
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
2022-08-12 00:43:43 -07:00

8 lines
164 B
Zig

ptr: *anyopaque,
pub const WorkDoneStatus = enum(u32) {
success = 0x00000000,
err = 0x00000001,
unknown = 0x00000002,
device_lost = 0x00000003,
};