gpu: Queue.WorkDoneStatus fields should be snake_case.
This commit is contained in:
parent
f96b5758fd
commit
f2ab1eb069
1 changed files with 4 additions and 5 deletions
|
|
@ -105,11 +105,10 @@ pub const Descriptor = struct {
|
|||
};
|
||||
|
||||
pub const WorkDoneStatus = enum(u32) {
|
||||
Success = 0x00000000,
|
||||
Error = 0x00000001,
|
||||
Unknown = 0x00000002,
|
||||
DeviceLost = 0x00000003,
|
||||
Force32 = 0x7FFFFFFF,
|
||||
success = 0x00000000,
|
||||
err = 0x00000001,
|
||||
unknown = 0x00000002,
|
||||
device_lost = 0x00000003,
|
||||
};
|
||||
|
||||
test {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue