diff --git a/examples/rotating-cube/main.zig b/examples/rotating-cube/main.zig index 70100e47..c4971d86 100755 --- a/examples/rotating-cube/main.zig +++ b/examples/rotating-cube/main.zig @@ -61,12 +61,12 @@ pub fn main() !void { .color = .{ .operation = .add, .src_factor = .one, - .dst_factor = .one, + .dst_factor = .zero, }, .alpha = .{ .operation = .add, .src_factor = .one, - .dst_factor = .one, + .dst_factor = .zero, }, }; const color_target = gpu.ColorTargetState{ diff --git a/examples/two-cubes/main.zig b/examples/two-cubes/main.zig index b3c8408f..98a7f674 100755 --- a/examples/two-cubes/main.zig +++ b/examples/two-cubes/main.zig @@ -61,12 +61,12 @@ pub fn main() !void { .color = .{ .operation = .add, .src_factor = .one, - .dst_factor = .one, + .dst_factor = .zero, }, .alpha = .{ .operation = .add, .src_factor = .one, - .dst_factor = .one, + .dst_factor = .zero, }, }; const color_target = gpu.ColorTargetState{