mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01:00
rsx: remove unused param
This commit is contained in:
parent
c5836e3525
commit
b501953d41
@ -1576,7 +1576,6 @@ namespace rsx
|
||||
AVPixelFormat ffmpeg_dst_format,
|
||||
bool need_convert,
|
||||
bool need_clip,
|
||||
bool src_is_modified,
|
||||
bool interpolate)
|
||||
{
|
||||
std::vector<u8> temp2, temp3;
|
||||
@ -1782,7 +1781,7 @@ namespace rsx
|
||||
}
|
||||
else
|
||||
{
|
||||
const auto swz_temp = _swizzled_copy_1(dst, src, out_w, out_h, slice_h, in_format, out_format, need_convert, need_clip, src_is_temp, interpolate);
|
||||
const auto swz_temp = _swizzled_copy_1(dst, src, out_w, out_h, slice_h, in_format, out_format, need_convert, need_clip, interpolate);
|
||||
auto pixels_src = swz_temp.empty() ? src.pixels : swz_temp.data();
|
||||
|
||||
_swizzled_copy_2(const_cast<u8*>(pixels_src), dst.pixels, src.pitch, out_w, out_h, dst.bpp);
|
||||
|
Loading…
Reference in New Issue
Block a user