Module: Mesa Branch: master Commit: 74dfd86ed69c11bd4eddee60ac8a14c39e4d5fc4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=74dfd86ed69c11bd4eddee60ac8a14c39e4d5fc4
Author: Tom Stellard <[email protected]> Date: Wed Jul 16 16:14:07 2014 -0400 clover: Call end_query before getting timestamp result v2 v2: - Move the end_query() call into the timestamp constructor. - Still pass false as the wait parameter to get_query_result(). Reviewed-by: Niels Ole Salscheider <[email protected]> Reviewed-by: Francisco Jerez <[email protected]> CC: "10.2" <[email protected]> --- src/gallium/state_trackers/clover/core/timestamp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/state_trackers/clover/core/timestamp.cpp b/src/gallium/state_trackers/clover/core/timestamp.cpp index 481c4f9..3fd341f 100644 --- a/src/gallium/state_trackers/clover/core/timestamp.cpp +++ b/src/gallium/state_trackers/clover/core/timestamp.cpp @@ -30,6 +30,7 @@ using namespace clover; timestamp::query::query(command_queue &q) : q(q), _query(q.pipe->create_query(q.pipe, PIPE_QUERY_TIMESTAMP, 0)) { + q.pipe->end_query(q.pipe, _query); } timestamp::query::query(query &&other) : _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
