mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-16 16:21:02 +00:00
rsx: remove unused param
This commit is contained in:
parent
c5836e3525
commit
b501953d41
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user