fixing image clear in vkCmdBeginRenderpass
Build / build (push) Failing after 0s
Test / build_and_test (push) Failing after 0s

This commit is contained in:
2026-06-19 01:59:14 +02:00
parent aaf6653b3f
commit 59716cc794
5 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -293,7 +293,7 @@ pub fn beginRenderPass(interface: *Interface, render_pass: *base.RenderPass, fra
image,
attachment.format,
attachment.subresource_range,
null,
impl.render_area,
);
} else {
var subresource_range = attachment.subresource_range;
@@ -306,7 +306,7 @@ pub fn beginRenderPass(interface: *Interface, render_pass: *base.RenderPass, fra
image,
attachment.format,
subresource_range,
null,
impl.render_area,
);
}
@@ -318,7 +318,7 @@ pub fn beginRenderPass(interface: *Interface, render_pass: *base.RenderPass, fra
image,
attachment.format,
subresource_range,
null,
impl.render_area,
);
}
}