gpu: prepare to add Device interface

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-06 19:05:00 -07:00 committed by Stephen Gutekanst
parent 2e0a7019b2
commit 5f7fe4d7e2
4 changed files with 49 additions and 35 deletions

View file

@ -20,12 +20,14 @@ const Interface = @import("Interface.zig");
const native = @import("native.zig").native;
const Adapter = @import("Adapter.zig");
const Device = @import("Device.zig");
const FeatureName = @import("feature_name.zig").FeatureName;
const SupportedLimits = @import("supported_limits.zig").SupportedLimits;
test "syntax" {
_ = Adapter;
_ = Device;
_ = Interface;
_ = native;
_ = FeatureName;