mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12:00
rsx: Fix typo
- Arguments to the transform function are xxyy not xyxy
This commit is contained in:
parent
8a1cf2c913
commit
e4671c29a6
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue