diff options
author | Andreas Hartmetz <[email protected]> | 2014-01-07 01:51:30 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2014-01-14 00:07:13 +0100 |
commit | 3e81883a4267807d654db8f739a32604d519816c (patch) | |
tree | 8570793ca8050bd88cff66f0b980f8bbdba35181 /src/gallium/drivers/radeonsi/si.h | |
parent | 238aeabce0e5cfd850279a68fe0c816adc175294 (diff) |
radeonsi: Rename r600->si for structs in si.h.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si.h')
-rw-r--r-- | src/gallium/drivers/radeonsi/si.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gallium/drivers/radeonsi/si.h b/src/gallium/drivers/radeonsi/si.h index 466d52e3d5e..ef794b27e48 100644 --- a/src/gallium/drivers/radeonsi/si.h +++ b/src/gallium/drivers/radeonsi/si.h @@ -35,7 +35,7 @@ struct winsys_handle; /* R600/R700 STATES */ -struct r600_query { +struct si_query { union { uint64_t u64; boolean b; @@ -67,16 +67,16 @@ void si_get_backend_mask(struct si_context *ctx); void si_context_flush(struct si_context *ctx, unsigned flags); void si_begin_new_cs(struct si_context *ctx); -struct r600_query *r600_context_query_create(struct si_context *ctx, unsigned query_type); -void r600_context_query_destroy(struct si_context *ctx, struct r600_query *query); +struct si_query *r600_context_query_create(struct si_context *ctx, unsigned query_type); +void r600_context_query_destroy(struct si_context *ctx, struct si_query *query); boolean r600_context_query_result(struct si_context *ctx, - struct r600_query *query, + struct si_query *query, boolean wait, void *vresult); -void r600_query_begin(struct si_context *ctx, struct r600_query *query); -void r600_query_end(struct si_context *ctx, struct r600_query *query); +void r600_query_begin(struct si_context *ctx, struct si_query *query); +void r600_query_end(struct si_context *ctx, struct si_query *query); void r600_context_queries_suspend(struct si_context *ctx); void r600_context_queries_resume(struct si_context *ctx); -void r600_query_predication(struct si_context *ctx, struct r600_query *query, int operation, +void r600_query_predication(struct si_context *ctx, struct si_query *query, int operation, int flag_wait); bool si_is_timer_query(unsigned type); |