gpu: add ColorTargetState

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-03-11 17:23:47 -07:00 committed by Stephen Gutekanst
parent 4aeea00409
commit d1bad15add
3 changed files with 9 additions and 7 deletions

View file

@ -102,6 +102,7 @@ pub const RenderPassDepthStencilAttachment = @import("structs.zig").RenderPassDe
pub const RenderPassColorAttachment = @import("structs.zig").RenderPassColorAttachment;
pub const VertexState = @import("structs.zig").VertexState;
pub const FragmentState = @import("structs.zig").FragmentState;
pub const ColorTargetState = @import("structs.zig").ColorTargetState;
// Enumerations
pub const Feature = @import("enums.zig").Feature;