summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/a5xx
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2017-08-24 09:16:53 -0400
committerRob Clark <[email protected]>2017-10-24 12:56:51 -0400
commit7e7096307aff680160f7924cf972718b404c6c88 (patch)
tree274adeb1bba8b3eddbae6beaa1fe02f18120c6cb /src/gallium/drivers/freedreno/a5xx
parent7a6c6e73a827471b73cafc897bb706b16afaadd7 (diff)
freedreno: pass context flags through to fd_context_init()
Prep work for later patch. Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/a5xx')
-rw-r--r--src/gallium/drivers/freedreno/a5xx/fd5_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/a5xx/fd5_context.c b/src/gallium/drivers/freedreno/a5xx/fd5_context.c
index 3632cc522ee..1d086338e9f 100644
--- a/src/gallium/drivers/freedreno/a5xx/fd5_context.c
+++ b/src/gallium/drivers/freedreno/a5xx/fd5_context.c
@@ -93,7 +93,7 @@ fd5_context_create(struct pipe_screen *pscreen, void *priv, unsigned flags)
fd5_prog_init(pctx);
fd5_emit_init(pctx);
- pctx = fd_context_init(&fd5_ctx->base, pscreen, primtypes, priv);
+ pctx = fd_context_init(&fd5_ctx->base, pscreen, primtypes, priv, flags);
if (!pctx)
return NULL;