mirror of https://github.com/mosra/magnum.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
176 lines
6.5 KiB
176 lines
6.5 KiB
#ifndef Magnum_GL_TimeQuery_h |
|
#define Magnum_GL_TimeQuery_h |
|
/* |
|
This file is part of Magnum. |
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, |
|
2020, 2021 Vladimír Vondruš <mosra@centrum.cz> |
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a |
|
copy of this software and associated documentation files (the "Software"), |
|
to deal in the Software without restriction, including without limitation |
|
the rights to use, copy, modify, merge, publish, distribute, sublicense, |
|
and/or sell copies of the Software, and to permit persons to whom the |
|
Software is furnished to do so, subject to the following conditions: |
|
|
|
The above copyright notice and this permission notice shall be included |
|
in all copies or substantial portions of the Software. |
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
DEALINGS IN THE SOFTWARE. |
|
*/ |
|
|
|
/** @file |
|
* @brief Class @ref Magnum::GL::TimeQuery |
|
*/ |
|
|
|
#include "Magnum/GL/AbstractQuery.h" |
|
|
|
namespace Magnum { namespace GL { |
|
|
|
/** |
|
@brief Query for elapsed time |
|
|
|
Queries timestamp after all previous OpenGL calls have been processed. It can |
|
query either duration of sequence of commands or absolute timestamp. Example |
|
usage of both methods: |
|
|
|
@snippet MagnumGL.cpp TimeQuery-usage1 |
|
|
|
@snippet MagnumGL.cpp TimeQuery-usage2 |
|
|
|
Using the latter results in fewer OpenGL calls when doing more measures. All |
|
times are reported in nanoseconds. |
|
|
|
@requires_gl33 Extension @gl_extension{ARB,timer_query} |
|
@requires_es_extension Extension @gl_extension{EXT,disjoint_timer_query} |
|
@requires_webgl_extension Extension @webgl_extension{EXT,disjoint_timer_query} |
|
on WebGL 1, @gl_extension{EXT,disjoint_timer_query_webgl2} on WebGL 2 |
|
@see @ref PipelineStatisticsQuery, @ref PrimitiveQuery, @ref SampleQuery |
|
@todo timestamp with glGet + example usage |
|
@todo @gl_extension{EXT,disjoint_timer_query} --- GL_GPU_DISJOINT_EXT support? where? |
|
*/ |
|
class TimeQuery: public AbstractQuery { |
|
public: |
|
/** |
|
* @brief Query target |
|
* |
|
* @m_enum_values_as_keywords |
|
*/ |
|
enum class Target: GLenum { |
|
/** |
|
* Elapsed time, in nanoseconds. Use @ref result<UnsignedLong>() or |
|
* @ref result<Long>() to retrieve the result. |
|
* @see @ref timestamp() |
|
*/ |
|
#ifndef MAGNUM_TARGET_GLES |
|
TimeElapsed = GL_TIME_ELAPSED, |
|
#else |
|
TimeElapsed = GL_TIME_ELAPSED_EXT, |
|
#endif |
|
|
|
/** |
|
* Timestamp, in nanoseconds. For use with @ref timestamp() only, |
|
* use @ref result<UnsignedLong>() or @ref result<Long>() to |
|
* retrieve the result. |
|
*/ |
|
#ifndef MAGNUM_TARGET_GLES |
|
Timestamp = GL_TIMESTAMP |
|
#else |
|
Timestamp = GL_TIMESTAMP_EXT |
|
#endif |
|
}; |
|
|
|
/** |
|
* @brief Wrap existing OpenGL time query object |
|
* @param id OpenGL time query ID |
|
* @param target Query target |
|
* @param flags Object creation flags |
|
* |
|
* The @p id is expected to be of an existing OpenGL query object. |
|
* Unlike query created using constructor, the OpenGL object is by |
|
* default not deleted on destruction, use @p flags for different |
|
* behavior. |
|
* @see @ref release() |
|
*/ |
|
static TimeQuery wrap(GLuint id, Target target, ObjectFlags flags = {}) { |
|
return TimeQuery{id, target, flags}; |
|
} |
|
|
|
/** |
|
* @brief Constructor |
|
* |
|
* Creates new OpenGL query object. If @gl_extension{ARB,direct_state_access} |
|
* (part of OpenGL 4.5) is not available, the query is created on first |
|
* use. |
|
* @see @ref TimeQuery(NoCreateT), @ref wrap(), @fn_gl_keyword{CreateQueries}, |
|
* eventually @fn_gl_keyword{GenQueries} |
|
*/ |
|
explicit TimeQuery(Target target): AbstractQuery(GLenum(target)) {} |
|
|
|
/** |
|
* @brief Construct without creating the underlying OpenGL object |
|
* |
|
* The constructed instance is equivalent to moved-from state. Useful |
|
* in cases where you will overwrite the instance later anyway. Move |
|
* another object over it to make it useful. |
|
* |
|
* This function can be safely used for constructing (and later |
|
* destructing) objects even without any OpenGL context being active. |
|
* However note that this is a low-level and a potentially dangerous |
|
* API, see the documentation of @ref NoCreate for alternatives. |
|
* @see @ref TimeQuery(Target), @ref wrap() |
|
*/ |
|
explicit TimeQuery(NoCreateT) noexcept: AbstractQuery{NoCreate, GLenum(Target::TimeElapsed)} {} |
|
|
|
/** @brief Copying is not allowed */ |
|
TimeQuery(const TimeQuery&) = delete; |
|
|
|
/** @brief Move constructor */ |
|
TimeQuery(TimeQuery&&) noexcept = default; |
|
|
|
/** @brief Copying is not allowed */ |
|
TimeQuery& operator=(const TimeQuery&) = delete; |
|
|
|
/** @brief Move assignment */ |
|
TimeQuery& operator=(TimeQuery&&) noexcept = default; |
|
|
|
/* Overloads to remove WTF-factor from method chaining order */ |
|
#if !defined(DOXYGEN_GENERATING_OUTPUT) && !defined(MAGNUM_TARGET_WEBGL) |
|
TimeQuery& setLabel(const std::string& label) { |
|
AbstractQuery::setLabel(label); |
|
return *this; |
|
} |
|
template<std::size_t size> TimeQuery& setLabel(const char(&label)[size]) { |
|
AbstractQuery::setLabel<size>(label); |
|
return *this; |
|
} |
|
#endif |
|
|
|
/** |
|
* @brief Query timestamp |
|
* |
|
* Use @ref result<UnsignedLong>() or @ref result<Long>() to retrieve |
|
* the result. |
|
* @see @fn_gl_keyword{QueryCounter} with @def_gl{TIMESTAMP} |
|
*/ |
|
void timestamp() { |
|
#ifndef MAGNUM_TARGET_GLES |
|
glQueryCounter(id(), GL_TIMESTAMP); |
|
#else |
|
glQueryCounterEXT(id(), GL_TIMESTAMP_EXT); |
|
#endif |
|
} |
|
|
|
private: |
|
explicit TimeQuery(GLuint id, Target target, ObjectFlags flags) noexcept: AbstractQuery{id, GLenum(target), flags} {} |
|
}; |
|
|
|
}} |
|
|
|
#endif
|
|
|