summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600/r600_query.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2012-10-07 03:47:43 +0200
committerMarek Olšák <[email protected]>2012-10-10 00:16:28 +0200
commiteb65fefa4bd5e9a6f08ec599b95f9d63d11c15fa (patch)
treec602d91ee2cd556d577bee74861ff6a64fda4963 /src/gallium/drivers/r600/r600_query.c
parentd8ea64697bbdbc1c7987db00a55954e4cf094ad5 (diff)
r600g: inline r600_atom_dirty
Reviewed-by: Jerome Glisse <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600/r600_query.c')
-rw-r--r--src/gallium/drivers/r600/r600_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_query.c b/src/gallium/drivers/r600/r600_query.c
index fef756ddfc5..d35d3fbd0bd 100644
--- a/src/gallium/drivers/r600/r600_query.c
+++ b/src/gallium/drivers/r600/r600_query.c
@@ -99,7 +99,7 @@ static void r600_update_occlusion_query_state(struct r600_context *rctx,
if (rctx->db_misc_state.occlusion_query_enabled != enable) {
rctx->db_misc_state.occlusion_query_enabled = enable;
- r600_atom_dirty(rctx, &rctx->db_misc_state.atom);
+ rctx->db_misc_state.atom.dirty = true;
}
}
}