Browse Source
Merge pull request #10143 from liamwhite/fruit-company-moment
video_core: fix build on Apple Clang
pull/15/merge
Morph
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
6 additions and
4 deletions
-
src/video_core/buffer_cache/buffer_cache.h
-
src/video_core/buffer_cache/memory_tracker_base.h
-
src/video_core/texture_cache/texture_cache.h
|
|
|
@ -1426,7 +1426,7 @@ bool BufferCache<P>::SynchronizeBufferNoModified(Buffer& buffer, VAddr cpu_addr, |
|
|
|
.size = 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()); |
|
|
|
UploadMemory(buffer, total_size_bytes, largest_copy, copies_span); |
|
|
|
|
|
|
|
@ -170,7 +170,8 @@ private: |
|
|
|
std::size_t page_index{cpu_address >> HIGHER_PAGE_BITS}; |
|
|
|
u64 page_offset{cpu_address & HIGHER_PAGE_MASK}; |
|
|
|
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]}; |
|
|
|
if (manager) { |
|
|
|
if constexpr (BOOL_BREAK) { |
|
|
|
@ -206,7 +207,8 @@ private: |
|
|
|
u64 begin = std::numeric_limits<u64>::max(); |
|
|
|
u64 end = 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]}; |
|
|
|
const auto execute = [&] { |
|
|
|
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, |
|
|
|
download_map.buffer, |
|
|
|
}; |
|
|
|
std::array buffer_offsets{ |
|
|
|
std::array<u64, 2> buffer_offsets{ |
|
|
|
buffer_offset, |
|
|
|
download_map.offset, |
|
|
|
}; |
|
|
|
|