gpu: add CommandBuffer, Queue.submit

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-08 00:54:56 -07:00 committed by Stephen Gutekanst
parent ad6cfbb0c9
commit bf93ae0f81
4 changed files with 46 additions and 2 deletions

View file

@ -32,6 +32,7 @@ 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 CommandBuffer = @import("CommandBuffer.zig");
pub const FeatureName = @import("feature_name.zig").FeatureName;
@ -44,6 +45,7 @@ test "syntax" {
_ = Surface;
_ = Limits;
_ = Queue;
_ = CommandBuffer;
_ = FeatureName;
}