gpu: correct BlendState default values

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2022-08-16 23:16:10 -07:00
parent bac182f804
commit d918dfb496

View file

@ -617,8 +617,8 @@ pub const VertexAttribute = extern struct {
};
pub const BlendState = extern struct {
color: BlendComponent,
alpha: BlendComponent,
color: BlendComponent = .{},
alpha: BlendComponent = .{},
};
pub const CompilationInfo = extern struct {