gpu: fix filename case sensitivity

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-15 20:23:51 -07:00 committed by Stephen Gutekanst
parent ae3137cb98
commit 1b2ca96541
7 changed files with 0 additions and 0 deletions

11
gpu/src/device.zig Normal file
View 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,
};
};