As TS is also allowed on sampler resources, we need to make sure to resolve to self when binding the resource as a texture, to avoid stale content being sampled.
Signed-off-by: Lucas Stach <[email protected]> --- src/gallium/drivers/etnaviv/etnaviv_texture.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gallium/drivers/etnaviv/etnaviv_texture.c b/src/gallium/drivers/etnaviv/etnaviv_texture.c index 6f77af286f26..df77829078c0 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_texture.c +++ b/src/gallium/drivers/etnaviv/etnaviv_texture.c @@ -120,6 +120,9 @@ etna_update_sampler_source(struct pipe_sampler_view *view) etna_copy_resource(view->context, res->texture, view->texture, 0, view->texture->last_level); etna_resource(res->texture)->seqno = res->seqno; + } else if (etna_resource_needs_flush(res)) { + etna_copy_resource(view->context, view->texture, view->texture, 0, 0); + res->flush_seqno = res->seqno; } } -- 2.11.0 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
