summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/freedreno/freedreno_context.c
diff options
context:
space:
mode:
authorRob Clark <[email protected]>2016-03-01 10:45:32 -0500
committerRob Clark <[email protected]>2016-07-23 13:39:30 -0400
commit6a4b052820a4553c536b08176795e3685f4a16e4 (patch)
tree0e1a2628cc4186b2219f58409db48327ca8b8560 /src/gallium/drivers/freedreno/freedreno_context.c
parent3d69357da9f297314f760be092fc55956848425e (diff)
freedreno: prep work for timestamp queries
We need "NULL" state to be a valid bit in the bitmask, because timestamp queries are not restricted to draw/etc stages (ie. the only commands to submit may just be to read the timestamp). And just because there are no draws, isn't a reason to skip the flush and return zero. Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers/freedreno/freedreno_context.c')
-rw-r--r--src/gallium/drivers/freedreno/freedreno_context.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_context.c b/src/gallium/drivers/freedreno/freedreno_context.c
index 52557d16068..65c38913c22 100644
--- a/src/gallium/drivers/freedreno/freedreno_context.c
+++ b/src/gallium/drivers/freedreno/freedreno_context.c
@@ -244,6 +244,8 @@ fd_context_init(struct fd_context *ctx, struct pipe_screen *pscreen,
*/
ctx->sample_mask = 0xffff;
+ ctx->stage = FD_STAGE_NULL;
+
pctx = &ctx->base;
pctx->screen = pscreen;
pctx->priv = priv;