rsx: remove unused param

This commit is contained in:
Megamouse 2023-12-30 17:29:59 +01:00
parent c5836e3525
commit b501953d41
1 changed files with 1 additions and 2 deletions

View File

@ -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);