gpu: fix filename case sensitivity
Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
parent
ae3137cb98
commit
1b2ca96541
7 changed files with 0 additions and 0 deletions
11
gpu/src/device.zig
Normal file
11
gpu/src/device.zig
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
pub const Device = enum(usize) {
|
||||
_,
|
||||
|
||||
// TODO: verify there is a use case for nullable value of this type.
|
||||
pub const none: Device = @intToEnum(Device, 0);
|
||||
|
||||
pub const LostReason = enum(u32) {
|
||||
undef = 0x00000000,
|
||||
destroyed = 0x00000001,
|
||||
};
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue