early-access version 3545
This commit is contained in:
parent
f6df739ee6
commit
6462b4528c
7 changed files with 12 additions and 11 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 3544.
|
This is the source code for early-access 3545.
|
||||||
|
|
||||||
## Legal Notice
|
## Legal Notice
|
||||||
|
|
||||||
|
|
|
@ -436,10 +436,7 @@ void System::Stop() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (execution_mode == ExecutionMode::Auto) {
|
if (execution_mode == ExecutionMode::Auto) {
|
||||||
// Should wait for the system to terminate here, but core timing (should have) already
|
terminate_event.Wait();
|
||||||
// stopped, so this isn't needed. Find a way to make this definite.
|
|
||||||
|
|
||||||
// terminate_event.Wait();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1426,7 +1426,7 @@ bool BufferCache<P>::SynchronizeBufferNoModified(Buffer& buffer, VAddr cpu_addr,
|
||||||
.size = sub_size,
|
.size = sub_size,
|
||||||
});
|
});
|
||||||
total_size_bytes += sub_size;
|
total_size_bytes += sub_size;
|
||||||
largest_copy = std::max(largest_copy, sub_size);
|
largest_copy = std::max<u64>(largest_copy, sub_size);
|
||||||
}
|
}
|
||||||
const std::span<BufferCopy> copies_span(copies.data(), copies.size());
|
const std::span<BufferCopy> copies_span(copies.data(), copies.size());
|
||||||
UploadMemory(buffer, total_size_bytes, largest_copy, copies_span);
|
UploadMemory(buffer, total_size_bytes, largest_copy, copies_span);
|
||||||
|
|
|
@ -170,7 +170,8 @@ private:
|
||||||
std::size_t page_index{cpu_address >> HIGHER_PAGE_BITS};
|
std::size_t page_index{cpu_address >> HIGHER_PAGE_BITS};
|
||||||
u64 page_offset{cpu_address & HIGHER_PAGE_MASK};
|
u64 page_offset{cpu_address & HIGHER_PAGE_MASK};
|
||||||
while (remaining_size > 0) {
|
while (remaining_size > 0) {
|
||||||
const std::size_t copy_amount{std::min(HIGHER_PAGE_SIZE - page_offset, remaining_size)};
|
const std::size_t copy_amount{
|
||||||
|
std::min<std::size_t>(HIGHER_PAGE_SIZE - page_offset, remaining_size)};
|
||||||
auto* manager{top_tier[page_index]};
|
auto* manager{top_tier[page_index]};
|
||||||
if (manager) {
|
if (manager) {
|
||||||
if constexpr (BOOL_BREAK) {
|
if constexpr (BOOL_BREAK) {
|
||||||
|
@ -206,7 +207,8 @@ private:
|
||||||
u64 begin = std::numeric_limits<u64>::max();
|
u64 begin = std::numeric_limits<u64>::max();
|
||||||
u64 end = 0;
|
u64 end = 0;
|
||||||
while (remaining_size > 0) {
|
while (remaining_size > 0) {
|
||||||
const std::size_t copy_amount{std::min(HIGHER_PAGE_SIZE - page_offset, remaining_size)};
|
const std::size_t copy_amount{
|
||||||
|
std::min<std::size_t>(HIGHER_PAGE_SIZE - page_offset, remaining_size)};
|
||||||
auto* manager{top_tier[page_index]};
|
auto* manager{top_tier[page_index]};
|
||||||
const auto execute = [&] {
|
const auto execute = [&] {
|
||||||
auto [new_begin, new_end] = func(manager, page_offset, copy_amount);
|
auto [new_begin, new_end] = func(manager, page_offset, copy_amount);
|
||||||
|
|
|
@ -888,7 +888,7 @@ void TextureCache<P>::DownloadImageIntoBuffer(typename TextureCache<P>::Image* i
|
||||||
buffer,
|
buffer,
|
||||||
download_map.buffer,
|
download_map.buffer,
|
||||||
};
|
};
|
||||||
std::array buffer_offsets{
|
std::array<u64, 2> buffer_offsets{
|
||||||
buffer_offset,
|
buffer_offset,
|
||||||
download_map.offset,
|
download_map.offset,
|
||||||
};
|
};
|
||||||
|
|
|
@ -617,7 +617,9 @@ bool Device::ShouldBoostClocks() const {
|
||||||
|
|
||||||
const bool is_steam_deck = vendor_id == 0x1002 && device_id == 0x163F;
|
const bool is_steam_deck = vendor_id == 0x1002 && device_id == 0x163F;
|
||||||
|
|
||||||
return validated_driver && !is_steam_deck;
|
const bool is_debugging = this->HasDebuggingToolAttached();
|
||||||
|
|
||||||
|
return validated_driver && !is_steam_deck && !is_debugging;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Device::GetSuitability(bool requires_swapchain) {
|
bool Device::GetSuitability(bool requires_swapchain) {
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
"overrides": [
|
"overrides": [
|
||||||
{
|
{
|
||||||
"name": "catch2",
|
"name": "catch2",
|
||||||
"version": "3.0.1"
|
"version": "3.3.1"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "fmt",
|
"name": "fmt",
|
||||||
|
|
Loading…
Reference in a new issue