diff options
author | Nicolai Hähnle <[email protected]> | 2016-04-20 09:22:48 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2016-04-21 22:32:50 -0500 |
commit | 32214e0c6837a24ad82152e9971baa3926992498 (patch) | |
tree | 8a455e6552f76440dd71d85c0e5381a6526428fc /src/gallium/include/pipe/p_context.h | |
parent | 6a0d036483caf87d43ebe2edd1905873446c9589 (diff) |
gallium: add bool return to pipe_context::end_query
Even when begin_query succeeds, there can still be failures in query handling.
For example for radeon, additional buffers may have to be allocated when
queries span multiple command buffers.
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/include/pipe/p_context.h')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 82efaf5d8a9..9d7a8eb76a9 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -140,7 +140,7 @@ struct pipe_context { struct pipe_query *q); boolean (*begin_query)(struct pipe_context *pipe, struct pipe_query *q); - void (*end_query)(struct pipe_context *pipe, struct pipe_query *q); + bool (*end_query)(struct pipe_context *pipe, struct pipe_query *q); /** * Get results of a query. |