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) {
|
pub const WorkDoneStatus = enum(u32) {
|
||||||
Success = 0x00000000,
|
success = 0x00000000,
|
||||||
Error = 0x00000001,
|
err = 0x00000001,
|
||||||
Unknown = 0x00000002,
|
unknown = 0x00000002,
|
||||||
DeviceLost = 0x00000003,
|
device_lost = 0x00000003,
|
||||||
Force32 = 0x7FFFFFFF,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
test {
|
test {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue