early-access version 3053

main
pineappleEA 2022-10-26 00:12:28 +02:00
parent 3dfc19dfb1
commit 9677f1e522
3 changed files with 15 additions and 10 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3050. This is the source code for early-access 3053.
## Legal Notice ## Legal Notice

View File

@ -44,7 +44,7 @@ public:
[[nodiscard]] unsigned Count() const noexcept { [[nodiscard]] unsigned Count() const noexcept {
unsigned count = 0; unsigned count = 0;
for (const auto [index, value] : page_table) { for (const auto& [index, value] : page_table) {
count += value; count += value;
} }
return count; return count;

View File

@ -303,6 +303,8 @@ void RasterizerVulkan::Clear() {
} }
} }
if (regs.clear_surface.R && regs.clear_surface.G && regs.clear_surface.B &&
regs.clear_surface.A) {
scheduler.Record([color_attachment, clear_value, clear_rect](vk::CommandBuffer cmdbuf) { scheduler.Record([color_attachment, clear_value, clear_rect](vk::CommandBuffer cmdbuf) {
const VkClearAttachment attachment{ const VkClearAttachment attachment{
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT, .aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
@ -311,6 +313,9 @@ void RasterizerVulkan::Clear() {
}; };
cmdbuf.ClearAttachments(attachment, clear_rect); cmdbuf.ClearAttachments(attachment, clear_rect);
}); });
} else {
UNIMPLEMENTED_MSG("Unimplemented Clear only the specified channel");
}
} }
if (!use_depth && !use_stencil) { if (!use_depth && !use_stencil) {