summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2016-07-16 21:52:20 +0200
committerMarek Olšák <marek.olsak@amd.com>2016-07-23 13:33:42 +0200
commit700de07771a1b6ce2a63b063fcc196c5b26cffe3 (patch)
tree78705e4c2d767c33c1d978dcd69ae518248f584b /src/gallium/drivers/r600
parent8e3e9d283976c30a8ba9b51821bc61ddf782e2b0 (diff)
downloadexternal_mesa3d-700de07771a1b6ce2a63b063fcc196c5b26cffe3.zip
external_mesa3d-700de07771a1b6ce2a63b063fcc196c5b26cffe3.tar.gz
external_mesa3d-700de07771a1b6ce2a63b063fcc196c5b26cffe3.tar.bz2
radeonsi: implement buffer_subdata without indirect calls
There is less noise in CPU profile data now. Reviewed-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r--src/gallium/drivers/r600/r600_pipe.c2
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 a3b6189..39a310a 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;