mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-29 10:10:09 +01:00
radeonsi: const-ify the si_query_ops
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
This commit is contained in:
parent
c85b0dea0a
commit
d73a25f2c0
3 changed files with 5 additions and 5 deletions
|
|
@ -915,7 +915,7 @@ static bool si_pc_query_get_result(struct si_context *sctx, struct si_query *rqu
|
|||
return true;
|
||||
}
|
||||
|
||||
static struct si_query_ops batch_query_ops = {
|
||||
static const struct si_query_ops batch_query_ops = {
|
||||
.destroy = si_pc_query_destroy,
|
||||
.begin = si_pc_query_begin,
|
||||
.end = si_pc_query_end,
|
||||
|
|
|
|||
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
#define SI_MAX_STREAMS 4
|
||||
|
||||
static struct si_query_ops query_hw_ops;
|
||||
static const struct si_query_ops query_hw_ops;
|
||||
|
||||
struct si_hw_query_params {
|
||||
unsigned start_offset;
|
||||
|
|
@ -499,7 +499,7 @@ static bool si_query_sw_get_result(struct si_context *sctx,
|
|||
}
|
||||
|
||||
|
||||
static struct si_query_ops sw_query_ops = {
|
||||
static const struct si_query_ops sw_query_ops = {
|
||||
.destroy = si_query_sw_destroy,
|
||||
.begin = si_query_sw_begin,
|
||||
.end = si_query_sw_end,
|
||||
|
|
@ -1343,7 +1343,7 @@ void si_query_hw_resume(struct si_context *sctx, struct si_query *query)
|
|||
si_query_hw_emit_start(sctx, (struct si_query_hw *)query);
|
||||
}
|
||||
|
||||
static struct si_query_ops query_hw_ops = {
|
||||
static const struct si_query_ops query_hw_ops = {
|
||||
.destroy = si_query_hw_destroy,
|
||||
.begin = si_query_hw_begin,
|
||||
.end = si_query_hw_end,
|
||||
|
|
|
|||
|
|
@ -141,7 +141,7 @@ struct si_query_ops {
|
|||
|
||||
struct si_query {
|
||||
struct threaded_query b;
|
||||
struct si_query_ops *ops;
|
||||
const struct si_query_ops *ops;
|
||||
|
||||
/* The PIPE_QUERY_xxx type of query */
|
||||
unsigned type;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue