aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/nouveau/nv50/nv50_query_hw.h')
-rw-r--r--src/gallium/drivers/nouveau/nv50/nv50_query_hw.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h b/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
index a89a66cec4f..4a351510f72 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
+++ b/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
@@ -17,10 +17,10 @@ struct nv50_hw_query;
struct nv50_hw_query_funcs {
void (*destroy_query)(struct nv50_context *, struct nv50_hw_query *);
- boolean (*begin_query)(struct nv50_context *, struct nv50_hw_query *);
+ bool (*begin_query)(struct nv50_context *, struct nv50_hw_query *);
void (*end_query)(struct nv50_context *, struct nv50_hw_query *);
- boolean (*get_query_result)(struct nv50_context *, struct nv50_hw_query *,
- boolean, union pipe_query_result *);
+ bool (*get_query_result)(struct nv50_context *, struct nv50_hw_query *,
+ bool, union pipe_query_result *);
};
struct nv50_hw_query {