Browse Source
[macos] build patches for sequoia
Signed-off-by: lizzie <lizzie@eden-emu.dev>
macos-sqbuild
lizzie
2 months ago
No known key found for this signature in database
GPG Key ID: 287378CADCAB13
2 changed files with
3 additions and
2 deletions
-
src/core/reporter.cpp
-
src/video_core/renderer_vulkan/vk_texture_cache.cpp
|
|
|
@ -6,6 +6,7 @@ |
|
|
|
|
|
|
|
#include <ctime>
|
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <iomanip>
|
|
|
|
|
|
|
|
#include <fmt/chrono.h>
|
|
|
|
|
|
|
|
@ -1383,8 +1383,8 @@ void TextureCacheRuntime::CopyImage(Image& dst, Image& src, |
|
|
|
} |
|
|
|
#endif
|
|
|
|
auto oneCopy = VideoCommon::ImageCopy{ |
|
|
|
.src_offset = VideoCommon::Offset3D(0, 0, 0), |
|
|
|
.dst_offset = VideoCommon::Offset3D(0, 0, 0), |
|
|
|
.src_offset = VideoCommon::Offset3D{0, 0, 0}, |
|
|
|
.dst_offset = VideoCommon::Offset3D{0, 0, 0}, |
|
|
|
.extent = dst.info.size |
|
|
|
}; |
|
|
|
return ReinterpretImage(dst, src, std::span{&oneCopy, 1}); |
|
|
|
|