[PATCH 2/3] wined3d: Refuse blits between height-scaled formats in the FBO blitter.

Zebediah Figura zfigura at codeweavers.com
Wed Apr 27 21:23:58 CDT 2022


Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 dlls/wined3d/texture.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/wined3d/texture.c b/dlls/wined3d/texture.c
index ce283b05022..a73b3b55e4b 100644
--- a/dlls/wined3d/texture.c
+++ b/dlls/wined3d/texture.c
@@ -279,6 +279,9 @@ static bool fbo_blitter_supported(enum wined3d_blit_op blit_op, const struct win
     if ((wined3d_settings.offscreen_rendering_mode != ORM_FBO) || !gl_info->fbo_ops.glBlitFramebuffer)
         return false;
 
+    if ((src_resource->format_flags | dst_resource->format_flags) & WINED3DFMT_FLAG_HEIGHT_SCALE)
+        return false;
+
     /* Source and/or destination need to be on the GL side. */
     if (!(src_resource->access & dst_resource->access & WINED3D_RESOURCE_ACCESS_GPU))
         return false;
-- 
2.35.1




More information about the wine-devel mailing list