diff options
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_resource.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_resource.c b/src/gallium/drivers/freedreno/freedreno_resource.c index 65dfc0486c3..034e4b4f5ac 100644 --- a/src/gallium/drivers/freedreno/freedreno_resource.c +++ b/src/gallium/drivers/freedreno/freedreno_resource.c @@ -438,8 +438,12 @@ fd_blitter_pipe_end(struct fd_context *ctx) } static void -fd_flush_resource(struct pipe_context *ctx, struct pipe_resource *resource) +fd_flush_resource(struct pipe_context *pctx, struct pipe_resource *prsc) { + struct fd_resource *rsc = fd_resource(prsc); + + if (rsc->dirty) + fd_context_render(pctx); } void |