summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/EfbInterface.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2020-12-11 23:04:32 -0800
committerPokechu22 <Pokechu022@gmail.com>2021-03-06 21:58:28 -0800
commit058c7db80b074fa52aaa504329ee69cf25a516e3 (patch)
tree9fc4a04fe7968f632461d33f80191e44eaec8b87 /Source/Core/VideoBackends/Software/EfbInterface.cpp
parent089250fde65c2e225681c0ef6917d28fa187e8de (diff)
Software: Fix out of bounds accesses in CopyRegion
Fixes issue 11393. The problem is that left and top make no sense for a width by height array; they only make sense in a larger array where from which a smaller part is extracted. Thus, the overall size of the array is provided to CopyRegion in addition to the sub-region. EncodeXFB already handles the extraction, so CopyRegion's only use there is to resize the image (and thus no sub-region is provided).
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/EfbInterface.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp
index 8ef62d5b03..acf82fc317 100644
--- a/Source/Core/VideoBackends/Software/EfbInterface.cpp
+++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp
@@ -634,17 +634,13 @@ void EncodeXFB(u8* xfb_in_ram, u32 memory_stride, const MathUtil::Rectangle<int>
src_ptr += memory_stride;
}
- auto dest_rect =
- MathUtil::Rectangle<int>{source_rect.left, source_rect.top, source_rect.right,
- static_cast<int>(static_cast<float>(source_rect.bottom) * y_scale)};
+ const int src_width = source_rect.GetWidth();
+ const int src_height = source_rect.GetHeight();
+ const int dst_width = src_width;
+ const int dst_height = src_height * y_scale;
- const std::size_t destination_size = dest_rect.GetWidth() * dest_rect.GetHeight() * 2;
- static std::vector<yuv422_packed> destination;
- destination.resize(dest_rect.GetWidth() * dest_rect.GetHeight());
-
- SW::CopyRegion(source.data(), source_rect, destination.data(), dest_rect);
-
- memcpy(xfb_in_ram, destination.data(), destination_size);
+ SW::CopyRegion(source.data(), src_width, src_height, reinterpret_cast<yuv422_packed*>(xfb_in_ram),
+ dst_width, dst_height);
}
bool ZCompare(u16 x, u16 y, u32 z)