gpu: implement ShaderModule, Device.createShaderModule

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-08 22:36:04 -07:00 committed by Stephen Gutekanst
parent 99744134f8
commit e9ea1e2531
5 changed files with 102 additions and 26 deletions

View file

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