gpu: unify data structs in single structs.zig

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-11 14:34:18 -07:00 committed by Stephen Gutekanst
parent 29a76f75c4
commit a463a0c7cd
6 changed files with 33 additions and 31 deletions

View file

@ -7,7 +7,7 @@
//! https://gpuweb.github.io/gpuweb/#devices
//! https://gpuweb.github.io/gpuweb/#gpuadapter
const Feature = @import("enums.zig").Feature;
const Limits = @import("Limits.zig");
const Limits = @import("structs.zig").Limits;
const Queue = @import("Queue.zig");
const ShaderModule = @import("ShaderModule.zig");
const Surface = @import("Surface.zig");