diff options
author | Marek Olšák <marek.olsak@amd.com> | 2015-07-25 18:40:59 +0200 |
---|---|---|
committer | Marek Olšák <marek.olsak@amd.com> | 2015-08-26 19:25:18 +0200 |
commit | 0fc21ecfc0891d239f20bf7724e51bc75503570c (patch) | |
tree | 19ffd27a9700601cae150dd229518637e369eb98 /src/gallium/tests/trivial/compute.c | |
parent | 7b5c92391f15533ec02327d617c4e8639a2f8bb4 (diff) | |
download | external_mesa3d-0fc21ecfc0891d239f20bf7724e51bc75503570c.zip external_mesa3d-0fc21ecfc0891d239f20bf7724e51bc75503570c.tar.gz external_mesa3d-0fc21ecfc0891d239f20bf7724e51bc75503570c.tar.bz2 |
gallium: add flags parameter to pipe_screen::context_create
This allows creating compute-only and debug contexts.
Reviewed-by: Brian Paul <brianp@vmware.com>
Acked-by: Christian König <christian.koenig@amd.com>
Acked-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'src/gallium/tests/trivial/compute.c')
-rw-r--r-- | src/gallium/tests/trivial/compute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/tests/trivial/compute.c b/src/gallium/tests/trivial/compute.c index 4edb857..b344f78 100644 --- a/src/gallium/tests/trivial/compute.c +++ b/src/gallium/tests/trivial/compute.c @@ -77,7 +77,7 @@ static void init_ctx(struct context *ctx) ctx->screen = pipe_loader_create_screen(ctx->dev, PIPE_SEARCH_DIR); assert(ctx->screen); - ctx->pipe = ctx->screen->context_create(ctx->screen, NULL); + ctx->pipe = ctx->screen->context_create(ctx->screen, NULL, 0); assert(ctx->pipe); DUMP_COMPUTE_PARAM(p, PIPE_COMPUTE_CAP_GRID_DIMENSION); |