diff options
| author | iwubcode <iwubcode@users.noreply.github.com> | 2017-10-02 00:33:47 -0500 |
|---|---|---|
| committer | iwubcode <iwubcode@users.noreply.github.com> | 2017-11-17 22:11:33 -0600 |
| commit | 1a1c3560ceb9c6d1db7b460e843998d504871bb1 (patch) | |
| tree | fb42cd34da208ebadd5303c816ec35cc4c799e1e /Source/Core/VideoBackends/Software/EfbInterface.cpp | |
| parent | 0f7f4ccaf9dd054b40691b82eedd2c61dc61d25a (diff) | |
Software Backend: Rename 'copy_region' to 'CopyRegion'
Diffstat (limited to 'Source/Core/VideoBackends/Software/EfbInterface.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/EfbInterface.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/EfbInterface.cpp b/Source/Core/VideoBackends/Software/EfbInterface.cpp index e667a7e584..55462ce33f 100644 --- a/Source/Core/VideoBackends/Software/EfbInterface.cpp +++ b/Source/Core/VideoBackends/Software/EfbInterface.cpp @@ -556,9 +556,9 @@ void EncodeXFB(yuv422_packed* xfb_in_ram, u32 memory_stride, const EFBRectangle& } // Apply y scaling and copy to the xfb memory location - SW::copy_region(source.data(), source_rect, xfb_in_ram, - EFBRectangle{source_rect.left, source_rect.top, source_rect.right, - static_cast<int>(static_cast<float>(source_rect.bottom) * y_scale)}); + SW::CopyRegion(source.data(), source_rect, xfb_in_ram, + EFBRectangle{source_rect.left, source_rect.top, source_rect.right, + static_cast<int>(static_cast<float>(source_rect.bottom) * y_scale)}); } bool ZCompare(u16 x, u16 y, u32 z) |
