mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
svga: Fix a leftover debug hack
Fix what appears to be a leftover debug hack.
The hack would force the driver to take a different blit path; possibly,
although unverified, reverting to software blits.
Tested using piglit tests/quick. No related regressions.
Cc: "17.2 17.3 18.0" <mesa-stable@lists.freedesktop.org>
Fixes: 9d81ab7376 (svga: Relax the format checks for copy_region_vgpu10 somewhat)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=104625
Reported-by: Grazvydas Ignotas <notasas@gmail.com>
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
This commit is contained in:
parent
af5f2322d0
commit
80c31f7837
1 changed files with 2 additions and 2 deletions
|
|
@ -351,8 +351,8 @@ can_blit_via_surface_copy(struct svga_context *svga,
|
|||
|
||||
if (blit_info->src.resource->format != blit_info->src.format ||
|
||||
blit_info->dst.resource->format != blit_info->dst.format ||
|
||||
!util_is_format_compatible(src_desc, dst_desc));
|
||||
return FALSE;
|
||||
!util_is_format_compatible(src_desc, dst_desc))
|
||||
return false;
|
||||
}
|
||||
|
||||
if (svga->render_condition && blit_info->render_condition_enable)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue