gpu: move Texture.ViewDimension -> TextureView.Dimension

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-11 16:40:43 -07:00 committed by Stephen Gutekanst
parent 1c0f5c0b03
commit bbd058f23e
7 changed files with 24 additions and 19 deletions

View file

@ -1,3 +1,5 @@
const BindGroupLayout = @import("BindGroupLayout.zig");
const BindGroup = @import("BindGroup.zig");
const PipelineLayout = @This();
@ -27,7 +29,7 @@ pub inline fn setLabel(qset: PipelineLayout, label: [:0]const u8) void {
pub const Descriptor = struct {
label: ?[*:0]const u8 = null,
bind_group_layouts: []const BindGroup.Layout,
bind_group_layouts: []const BindGroupLayout,
};
test "syntax" {