rsx: Fix build after variable rename

This commit is contained in:
kd-11 2023-05-17 18:47:49 +03:00 committed by kd-11
parent 6fd76054b4
commit 793a21a825
1 changed files with 2 additions and 2 deletions

View File

@ -352,7 +352,7 @@ namespace rsx
const size2u src_size = { dimensions.width / section_bpp, dimensions.height }; const size2u src_size = { dimensions.width / section_bpp, dimensions.height };
const u32 dst_slice_begin = slice * attr.slice_h; // Output slice low watermark const u32 dst_slice_begin = slice * attr.slice_h; // Output slice low watermark
const u32 dst_slice_end = slice_begin + attr.height; // Output slice high watermark const u32 dst_slice_end = dst_slice_begin + attr.height; // Output slice high watermark
const auto dst_y = dst_offset.y; const auto dst_y = dst_offset.y;
const auto dst_h = dst_size.height; const auto dst_h = dst_size.height;
@ -400,7 +400,7 @@ namespace rsx
static_cast<u16>(src_offset.x), // src.x static_cast<u16>(src_offset.x), // src.x
static_cast<u16>(src_offset.y), // src.y static_cast<u16>(src_offset.y), // src.y
static_cast<u16>(dst_offset.x), // dst.x static_cast<u16>(dst_offset.x), // dst.x
static_cast<u16>(dst_y - slice_begin), // dst.y static_cast<u16>(dst_y - dst_slice_begin), // dst.y
0, 0,
src_w, src_w,
height, height,