mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 22:38:05 +02:00
gallium: Make util_copy_image_view handle shader_access
A while back, we added a new field, but failed to update the copier.
I believe iris is the only current user of the new field, and it hasn't
used the copier, so noone noticed.
Fixes: 8b626a22b2 st/mesa: Record shader access qualifiers for images
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
parent
0d6fc6f07e
commit
255c71ec07
1 changed files with 2 additions and 0 deletions
|
|
@ -668,11 +668,13 @@ util_copy_image_view(struct pipe_image_view *dst,
|
|||
pipe_resource_reference(&dst->resource, src->resource);
|
||||
dst->format = src->format;
|
||||
dst->access = src->access;
|
||||
dst->shader_access = src->shader_access;
|
||||
dst->u = src->u;
|
||||
} else {
|
||||
pipe_resource_reference(&dst->resource, NULL);
|
||||
dst->format = PIPE_FORMAT_NONE;
|
||||
dst->access = 0;
|
||||
dst->shader_access = 0;
|
||||
memset(&dst->u, 0, sizeof(dst->u));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue