Revert "gallium: add a is_dri_blit_image bool to pipe_blit_info"

This reverts commit 22a1b7c5b3.

The only use was radeonsi and it switched to PIPE_BIND_DRI_PRIME
instead.

Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13362>
This commit is contained in:
Pierre-Eric Pelloux-Prayer 2021-10-15 14:35:09 +02:00
parent ec2eff8f38
commit 7a2e40df5e
2 changed files with 0 additions and 2 deletions

View file

@ -1718,7 +1718,6 @@ dri2_blit_image(__DRIcontext *context, __DRIimage *dst, __DRIimage *src,
blit.src.format = src->texture->format;
blit.mask = PIPE_MASK_RGBA;
blit.filter = PIPE_TEX_FILTER_NEAREST;
blit.is_dri_blit_image = true;
pipe->blit(pipe, &blit);

View file

@ -903,7 +903,6 @@ struct pipe_blit_info
bool render_condition_enable; /**< whether the blit should honor the
current render condition */
bool alpha_blend; /* dst.rgb = src.rgb * src.a + dst.rgb * (1 - src.a) */
bool is_dri_blit_image;
};
/**