#ifndef Magnum_GL_AbstractQuery_h #define Magnum_GL_AbstractQuery_h /* This file is part of Magnum. Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Vladimír Vondruš 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::AbstractQuery */ #include #include #include "Magnum/Tags.h" #include "Magnum/GL/AbstractObject.h" #include "Magnum/configure.h" #ifdef MAGNUM_BUILD_DEPRECATED /* For label() / setLabel(), which used to be a std::string. Not ideal for the return type, but at least something. */ #include #endif namespace Magnum { namespace GL { namespace Implementation { struct QueryState; } /** @brief Base class for queries See @ref PipelineStatisticsQuery, @ref PrimitiveQuery, @ref SampleQuery and @ref TimeQuery documentation for more information. @todo `QUERY_COUNTER_BITS` (not sure since when this is supported) */ class MAGNUM_GL_EXPORT AbstractQuery: public AbstractObject { friend Implementation::QueryState; public: /** @brief Copying is not allowed */ AbstractQuery(const AbstractQuery&) = delete; /** @brief Move constructor */ AbstractQuery(AbstractQuery&& other) noexcept; /** @brief Copying is not allowed */ AbstractQuery& operator=(const AbstractQuery&) = delete; /** @brief Move assignment */ AbstractQuery& operator=(AbstractQuery&& other) noexcept; /** @brief OpenGL query ID */ GLuint id() const { return _id; } /** * @brief Release OpenGL object * * Releases ownership of OpenGL query object and returns its ID so it * is not deleted on destruction. The internal state is then equivalent * to moved-from state. * @see @ref PrimitiveQuery::wrap(), @ref SampleQuery::wrap(), * @ref TimeQuery::wrap() */ GLuint release(); #ifndef MAGNUM_TARGET_WEBGL /** * @brief Query label * * The result is *not* cached, repeated queries will result in repeated * OpenGL calls. If OpenGL 4.3 / OpenGL ES 3.2 is not supported and * neither @gl_extension{KHR,debug} (covered also by * @gl_extension{ANDROID,extension_pack_es31a}) nor @gl_extension{EXT,debug_label} * desktop or ES extension is available, this function returns empty * string. * @see @fn_gl_keyword{GetObjectLabel} with @def_gl{QUERY} or * @fn_gl_extension_keyword{GetObjectLabel,EXT,debug_label} with * @def_gl{QUERY_OBJECT_EXT} * @requires_gles Debug output is not available in WebGL. */ Containers::String label() const; /** * @brief Set query label * @return Reference to self (for method chaining) * * Default is empty string. If OpenGL 4.3 / OpenGL ES 3.2 is not * supported and neither @gl_extension{KHR,debug} (covered also by * @gl_extension{ANDROID,extension_pack_es31a}) nor @gl_extension{EXT,debug_label} * desktop or ES extension is available, this function does nothing. * @see @ref maxLabelLength(), @fn_gl_keyword{ObjectLabel} with * @def_gl{QUERY} or @fn_gl_extension_keyword{LabelObject,EXT,debug_label} * with @def_gl{QUERY_OBJECT_EXT} * @requires_gles Debug output is not available in WebGL. */ AbstractQuery& setLabel(Containers::StringView label); #endif /** * @brief Whether the result is available * * @see @fn_gl_keyword{GetQueryObject} with @def_gl{QUERY_RESULT_AVAILABLE} */ bool resultAvailable(); /** * @brief Result * @tparam T Result type. Can be either `bool`, * @ref Magnum::UnsignedInt "UnsignedInt", @ref Magnum::Int "Int", * @ref Magnum::UnsignedLong "UnsignedLong" or * @ref Magnum::Long "Long". * * Note that this function is blocking until the result is available. * See @ref resultAvailable(). * @see @fn_gl_keyword{GetQueryObject} with @def_gl{QUERY_RESULT} * @requires_gl33 Extension @gl_extension{ARB,timer_query} for result * type @ref Magnum::UnsignedLong "UnsignedLong" and @ref Magnum::Long "Long" * @requires_es_extension Extension @gl_extension{EXT,disjoint_timer_query} * for result types @ref Magnum::Int "Int", @ref Magnum::UnsignedLong "UnsignedLong" * and @ref Magnum::Long "Long". * @requires_gles Only @ref Magnum::UnsignedInt "UnsignedInt" result * type is available in WebGL. */ template T result(); /** * @brief Begin query * * Begins counting until @ref end() is called. * @see @fn_gl_keyword{BeginQuery} */ void begin(); /** * @brief End query * * The result can be then retrieved by calling @ref result(). * @see @fn_gl_keyword{EndQuery} */ void end(); protected: /** * @brief Destructor * * Deletes assigned OpenGL query. * @see @ref PrimitiveQuery::wrap(), @ref SampleQuery::wrap(), * @ref TimeQuery::wrap(), @ref release(), * @fn_gl_keyword{DeleteQueries} */ ~AbstractQuery(); #ifdef DOXYGEN_GENERATING_OUTPUT private: #endif explicit AbstractQuery(GLenum target); explicit AbstractQuery(NoCreateT, GLenum target) noexcept: _id{0}, _target{target}, _flags{ObjectFlag::DeleteOnDestruction} {} explicit AbstractQuery(GLuint id, GLenum target, ObjectFlags flags) noexcept: _id{id}, _target{target}, _flags{flags} {} GLuint _id; GLenum _target; private: static void MAGNUM_GL_LOCAL createImplementationDefault(AbstractQuery& self); #ifndef MAGNUM_TARGET_GLES static void MAGNUM_GL_LOCAL createImplementationDSA(AbstractQuery& self); static void MAGNUM_GL_LOCAL createImplementationDSAExceptXfbOverflow(AbstractQuery& self); static void MAGNUM_GL_LOCAL createImplementationDSAExceptPipelineStats(AbstractQuery& self); #endif ObjectFlags _flags; }; #ifndef DOXYGEN_GENERATING_OUTPUT template<> bool MAGNUM_GL_EXPORT AbstractQuery::result(); template<> UnsignedInt MAGNUM_GL_EXPORT AbstractQuery::result(); template<> Int MAGNUM_GL_EXPORT AbstractQuery::result(); template<> UnsignedLong MAGNUM_GL_EXPORT AbstractQuery::result(); template<> Long MAGNUM_GL_EXPORT AbstractQuery::result(); #endif inline AbstractQuery::AbstractQuery(AbstractQuery&& other) noexcept: _id(other._id), _target(other._target), _flags{other._flags} { other._id = 0; } inline AbstractQuery& AbstractQuery::operator=(AbstractQuery&& other) noexcept { using Utility::swap; swap(_id, other._id); swap(_target, other._target); swap(_flags, other._flags); return *this; } inline GLuint AbstractQuery::release() { const GLuint id = _id; _id = 0; return id; } }} #endif