summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorRobert Bragg <[email protected]>2017-02-23 11:16:50 +0000
committerRobert Bragg <[email protected]>2017-02-24 17:16:11 +0000
commitd1bb7895b98692e2c1932cd73e24816a4ac560b1 (patch)
treef638481f2e5b0a1d7c501818bfc9c15682de756a /src/mesa/main/dd.h
parent1534fc6d10509a443700a05923ab3f55eae1fd53 (diff)
main/performance_query: s/GLboolean/bool/
Ideally would have caught these when adding the interface but this just switches a few return types for the INTEL_performance_query backend interface to bool instead of GLboolean. Signed-off-by: Robert Bragg <[email protected]> Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index aba301cf22e..63fc62103a7 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -804,14 +804,14 @@ struct dd_function_table {
unsigned queryIndex);
void (*DeletePerfQuery)(struct gl_context *ctx,
struct gl_perf_query_object *obj);
- GLboolean (*BeginPerfQuery)(struct gl_context *ctx,
- struct gl_perf_query_object *obj);
+ bool (*BeginPerfQuery)(struct gl_context *ctx,
+ struct gl_perf_query_object *obj);
void (*EndPerfQuery)(struct gl_context *ctx,
struct gl_perf_query_object *obj);
void (*WaitPerfQuery)(struct gl_context *ctx,
struct gl_perf_query_object *obj);
- GLboolean (*IsPerfQueryReady)(struct gl_context *ctx,
- struct gl_perf_query_object *obj);
+ bool (*IsPerfQueryReady)(struct gl_context *ctx,
+ struct gl_perf_query_object *obj);
void (*GetPerfQueryData)(struct gl_context *ctx,
struct gl_perf_query_object *obj,
GLsizei dataSize,