diff options
author | Eric Anholt <[email protected]> | 2012-10-17 17:45:46 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-10-26 12:41:01 -0700 |
commit | 99dc87061333eeb8f617a6919cc3b6e9cc85beee (patch) | |
tree | 32a61e6a7a1fea1b005172d32a16542827150c9c /src/mesa/drivers/dri | |
parent | b78b62497f1e5cc64eb924c64e4685fe5d814fd7 (diff) |
i965: Rename misleading "active" field of brw->query.
"Active" is an already-used term for the query being between
glBeginQuery() and glEndQuery(), while this is tracking whether the
start of the packet pair for emitting state has been inserted into the
current batchbuffer.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 2 | ||||
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_queryobj.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index e1acc51d12c..eca1d457fc4 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -1057,7 +1057,7 @@ struct brw_context struct brw_query_object *obj; drm_intel_bo *bo; int index; - bool active; + bool begin_emitted; } query; /* Used to give every program string a unique id */ diff --git a/src/mesa/drivers/dri/i965/brw_queryobj.c b/src/mesa/drivers/dri/i965/brw_queryobj.c index 84da9e0e30a..0e42f39abea 100644 --- a/src/mesa/drivers/dri/i965/brw_queryobj.c +++ b/src/mesa/drivers/dri/i965/brw_queryobj.c @@ -428,7 +428,7 @@ brw_emit_query_begin(struct brw_context *brw) struct brw_query_object *query = brw->query.obj; /* Skip if we're not doing any queries, or we've emitted the start. */ - if (!query || brw->query.active) + if (!query || brw->query.begin_emitted) return; write_depth_count(intel, brw->query.bo, brw->query.index * 2); @@ -441,7 +441,7 @@ brw_emit_query_begin(struct brw_context *brw) query->first_index = brw->query.index; } query->last_index = brw->query.index; - brw->query.active = true; + brw->query.begin_emitted = true; } /** Called at batchbuffer flush to get an ending PS_DEPTH_COUNT */ @@ -450,12 +450,12 @@ brw_emit_query_end(struct brw_context *brw) { struct intel_context *intel = &brw->intel; - if (!brw->query.active) + if (!brw->query.begin_emitted) return; write_depth_count(intel, brw->query.bo, brw->query.index * 2 + 1); - brw->query.active = false; + brw->query.begin_emitted = false; brw->query.index++; } |