gpu: add CompilationMessageType enum

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-10 22:17:01 -07:00 committed by Stephen Gutekanst
parent 06661ce9e1
commit 8f28b65fed
2 changed files with 6 additions and 7 deletions

View file

@ -69,3 +69,9 @@ pub const CompilationInfoRequestStatus = enum(u32) {
device_lost = 0x00000002,
unknown = 0x00000003,
};
pub const CompilationMessageType = enum(u32) {
err = 0x00000000,
warning = 0x00000001,
info = 0x00000002,
};