diff options
author | Chia-I Wu <[email protected]> | 2014-09-19 15:24:23 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-19 16:02:11 +0800 |
commit | 8a2352262e27bf7d3c31a20b72eb04772d56ff42 (patch) | |
tree | db6bdccfaf3476ce8b7d7e0d9c9f711c792e270a /src/gallium/drivers/ilo/ilo_query.c | |
parent | 1887d15eede63927152f7f664061e7efe7d16185 (diff) |
ilo: rename ilo_cp_flush()
"Flush" is used for too many things already: pipe resource flush, pipe context
flush, pipe transfer region flush, and hardware pipeline flush. Rename it to
ilo_cp_submit(). As such, ILO_DEBUG=flush is renamed to ILO_DEBUG=submit.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_query.c')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_query.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_query.c b/src/gallium/drivers/ilo/ilo_query.c index c789397d12c..812e056996e 100644 --- a/src/gallium/drivers/ilo/ilo_query.c +++ b/src/gallium/drivers/ilo/ilo_query.c @@ -186,7 +186,7 @@ ilo_get_query_result(struct pipe_context *pipe, struct pipe_query *query, if (q->bo) { if (ilo_builder_has_reloc(&ilo->cp->builder, q->bo)) - ilo_cp_flush(ilo->cp, "syncing for queries"); + ilo_cp_submit(ilo->cp, "syncing for queries"); if (!wait && intel_bo_is_busy(q->bo)) return false; |