mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
rsx: Fix typo
- Arguments to the transform function are xxyy not xyxy
This commit is contained in:
parent
8a1cf2c913
commit
e4671c29a6
|
|
@ -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…
Reference in a new issue