diff options
author | Marek Olšák <[email protected]> | 2016-07-16 21:52:20 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2016-07-23 13:33:42 +0200 |
commit | 700de07771a1b6ce2a63b063fcc196c5b26cffe3 (patch) | |
tree | 78705e4c2d767c33c1d978dcd69ae518248f584b /src/gallium/drivers/r600/r600_pipe.c | |
parent | 8e3e9d283976c30a8ba9b51821bc61ddf782e2b0 (diff) |
radeonsi: implement buffer_subdata without indirect calls
There is less noise in CPU profile data now.
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_pipe.c')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index a3b6189309e..39a310abebb 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -129,7 +129,7 @@ static struct pipe_context *r600_create_context(struct pipe_screen *screen, rctx->b.b.destroy = r600_destroy_context; rctx->b.set_atom_dirty = (void *)r600_set_atom_dirty; - if (!r600_common_context_init(&rctx->b, &rscreen->b)) + if (!r600_common_context_init(&rctx->b, &rscreen->b, flags)) goto fail; rctx->screen = rscreen; |