rsx: remove unused param

This commit is contained in:
Megamouse 2023-12-30 17:29:59 +01:00
parent c5836e3525
commit b501953d41

View File

@ -1576,7 +1576,6 @@ namespace rsx
AVPixelFormat ffmpeg_dst_format, AVPixelFormat ffmpeg_dst_format,
bool need_convert, bool need_convert,
bool need_clip, bool need_clip,
bool src_is_modified,
bool interpolate) bool interpolate)
{ {
std::vector<u8> temp2, temp3; std::vector<u8> temp2, temp3;
@ -1782,7 +1781,7 @@ namespace rsx
} }
else 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(); 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); _swizzled_copy_2(const_cast<u8*>(pixels_src), dst.pixels, src.pitch, out_w, out_h, dst.bpp);