r300g: remove unused r300_query::active
authorMarek Olšák <maraeo@gmail.com>
Sat, 15 May 2010 17:37:33 +0000 (19:37 +0200)
committerMarek Olšák <maraeo@gmail.com>
Sat, 15 May 2010 17:39:57 +0000 (19:39 +0200)
src/gallium/drivers/r300/r300_context.h
src/gallium/drivers/r300/r300_query.c

index 5ad448978b9d572efe04127de030a397ec5ecff8..4a59c6a8fb2c0f61855c8dedf63b3383cda5bdff 100644 (file)
@@ -235,10 +235,6 @@ struct r300_constant_buffer {
 struct r300_query {
     /* The kind of query. Currently only OQ is supported. */
     unsigned type;
-    /* Whether this query is currently active. Only active queries will
-     * get emitted into the command stream, and only active queries get
-     * tallied. */
-    boolean active;
     /* The current count of this query. Required to be at least 32 bits. */
     unsigned int count;
     /* The offset of this query into the query buffer, in bytes. */
index 0067b0345dcab8384b003cdb6f833dad05a64490..6acbac2219664411554c22b9b76ceb815d09f86a 100644 (file)
@@ -43,8 +43,6 @@ static struct pipe_query *r300_create_query(struct pipe_context *pipe,
     q->type = query_type;
     assert(q->type == PIPE_QUERY_OCCLUSION_COUNTER);
 
-    q->active = FALSE;
-
     if (r300screen->caps.family == CHIP_FAMILY_RV530)
         query_size = r300screen->caps.num_z_pipes * sizeof(uint32_t);
     else