11 lines
388 B
Zig
11 lines
388 B
Zig
const ChainedStruct = @import("types.zig").ChainedStruct;
|
|
const BindGroupLayout = @import("bind_group_layout.zig").BindGroupLayout;
|
|
|
|
pub const PipelineLayout = *opaque {};
|
|
|
|
pub const PipelineLayoutDescriptor = extern struct {
|
|
next_in_chain: *const ChainedStruct,
|
|
label: ?[*:0]const u8 = null,
|
|
bind_group_layout_count: u32,
|
|
bind_group_layouts: [*]const BindGroupLayout,
|
|
};
|