mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-19 06:00:30 +01:00
asahi: fallback some resource copies
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26963>
This commit is contained in:
parent
355af1e903
commit
5cd7416542
1 changed files with 4 additions and 0 deletions
|
|
@ -403,6 +403,10 @@ try_copy_via_blit(struct pipe_context *pctx, struct pipe_resource *dst,
|
|||
if (dst->target == PIPE_BUFFER)
|
||||
return false;
|
||||
|
||||
/* TODO: Handle these for rusticl copies */
|
||||
if (dst->target != src->target)
|
||||
return false;
|
||||
|
||||
struct pipe_blit_info info = {
|
||||
.dst =
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue