diff options
author | Kenneth Graunke <[email protected]> | 2013-02-25 22:30:21 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2013-03-01 22:09:04 -0800 |
commit | 90feda81de3c608d5a6041246fc010904a3afa81 (patch) | |
tree | 5fb8fb8b906ce0e2808359eb2d03fb7b415c08f4 /src/mesa/drivers/dri/i965/brw_queryobj.c | |
parent | ec5d502ec3215c7610bcff0be4418f698b2f36ab (diff) |
i965: Use query->last_index instead of the global brw->query.index.
Since we already have an index in the brw_query_object, there's no need
to also keep a global variable that shadows it.
Plus, if we ever add support for more types of queries that still need
the per-batch before/after treatment we do for occlusion queries, we
won't be able to use a single global variable. In contrast, per-query
object variables will work fine.
Signed-off-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_queryobj.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_queryobj.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_queryobj.c b/src/mesa/drivers/dri/i965/brw_queryobj.c index 8893dd77994..d218631aaf2 100644 --- a/src/mesa/drivers/dri/i965/brw_queryobj.c +++ b/src/mesa/drivers/dri/i965/brw_queryobj.c @@ -531,7 +531,7 @@ brw_emit_query_begin(struct brw_context *brw) * buffer's results momentarily. */ if (brw->query.bo == NULL || - brw->query.index * 2 + 1 >= 4096 / sizeof(uint64_t)) { + query->last_index * 2 + 1 >= 4096 / sizeof(uint64_t)) { drm_intel_bo_unreference(brw->query.bo); brw->query.bo = NULL; @@ -542,10 +542,10 @@ brw_emit_query_begin(struct brw_context *brw) memset((char *)brw->query.bo->virtual, 0, 4096); drm_intel_bo_unmap(brw->query.bo); - brw->query.index = 0; + query->last_index = 0; } - write_depth_count(intel, brw->query.bo, brw->query.index * 2); + write_depth_count(intel, brw->query.bo, query->last_index * 2); if (query->bo != brw->query.bo) { if (query->bo != NULL) { @@ -558,7 +558,6 @@ brw_emit_query_begin(struct brw_context *brw) drm_intel_bo_reference(brw->query.bo); query->bo = brw->query.bo; } - query->last_index = brw->query.index; brw->query.begin_emitted = true; } @@ -571,14 +570,15 @@ void brw_emit_query_end(struct brw_context *brw) { struct intel_context *intel = &brw->intel; + struct brw_query_object *query = brw->query.obj; if (!brw->query.begin_emitted) return; - write_depth_count(intel, brw->query.bo, brw->query.index * 2 + 1); + write_depth_count(intel, brw->query.bo, query->last_index * 2 + 1); brw->query.begin_emitted = false; - brw->query.index++; + query->last_index++; } /** |