mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-23 22:00:13 +01:00
gallium/util: fix util_can_blit_via_copy_region for conditional rendering
Reviewed-by: Zoltán Böszörményi <zboszor@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7720>
This commit is contained in:
parent
bd697652a7
commit
767f70dfe1
1 changed files with 2 additions and 1 deletions
|
|
@ -765,7 +765,8 @@ util_can_blit_via_copy_region(const struct pipe_blit_info *blit,
|
||||||
blit->filter != PIPE_TEX_FILTER_NEAREST ||
|
blit->filter != PIPE_TEX_FILTER_NEAREST ||
|
||||||
blit->scissor_enable ||
|
blit->scissor_enable ||
|
||||||
blit->num_window_rectangles > 0 ||
|
blit->num_window_rectangles > 0 ||
|
||||||
blit->alpha_blend) {
|
blit->alpha_blend ||
|
||||||
|
blit->render_condition_enable) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue