rsx: Fix typo
- Arguments to the transform function are xxyy not xyxy
This commit is contained in:
@@ -628,7 +628,7 @@ namespace gl
|
|||||||
|
|
||||||
if (auto surface = dynamic_cast<gl::render_target*>(slice.src))
|
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))
|
if (UNLIKELY(typeless))
|
||||||
|
|||||||
@@ -507,7 +507,7 @@ namespace vk
|
|||||||
|
|
||||||
if (auto surface = dynamic_cast<vk::render_target*>(section.src))
|
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))
|
if (UNLIKELY(typeless))
|
||||||
|
|||||||
Reference in New Issue
Block a user