gpu: add dawn.CacheDeviceDescriptor

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-07-15 23:20:08 -07:00 committed by Stephen Gutekanst
parent 2877121147
commit 5094ad2e72
3 changed files with 11 additions and 5 deletions

7
gpu/src/dawn.zig Normal file
View file

@ -0,0 +1,7 @@
const ChainedStruct = @import("types.zig").ChainedStruct;
pub const CacheDeviceDescriptor = struct {
// TODO: file an issue on Dawn: why not named nextInChain?
chain: ChainedStruct,
isolation_key: [*:0]const u8,
};