rsx: Fix typo

- Arguments to the transform function are xxyy not xyxy
This commit is contained in:
kd-11 2019-06-11 18:30:20 +03:00 committed by kd-11
parent 8a1cf2c913
commit e4671c29a6
2 changed files with 2 additions and 2 deletions

View file

@ -628,7 +628,7 @@ namespace gl
if (auto surface = dynamic_cast<gl::render_target*>(slice.src))
{
surface->transform_samples_to_pixels(src_x, src_y, src_w, src_h);
surface->transform_samples_to_pixels(src_x, src_w, src_y, src_h);
}
if (UNLIKELY(typeless))

View file

@ -507,7 +507,7 @@ namespace vk
if (auto surface = dynamic_cast<vk::render_target*>(section.src))
{
surface->transform_samples_to_pixels(src_x, src_y, src_w, src_h);
surface->transform_samples_to_pixels(src_x, src_w, src_y, src_h);
}
if (UNLIKELY(typeless))