gpu: basic Queue implementation

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-07 23:58:11 -07:00 committed by Stephen Gutekanst
parent 5a7fa36baf
commit 2b67ad5457
5 changed files with 86 additions and 20 deletions

View file

@ -31,6 +31,7 @@ pub const Adapter = @import("Adapter.zig");
pub const Device = @import("Device.zig");
pub const Surface = @import("Surface.zig");
pub const Limits = @import("Limits.zig");
pub const Queue = @import("Queue.zig");
pub const FeatureName = @import("feature_name.zig").FeatureName;
@ -42,6 +43,7 @@ test "syntax" {
_ = Device;
_ = Surface;
_ = Limits;
_ = Queue;
_ = FeatureName;
}