| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- // Copyright (C) 2009-2021, Panagiotis Christopoulos Charitos and contributors.
- // All rights reserved.
- // Code licensed under the BSD License.
- // http://www.anki3d.org/LICENSE
- #pragma once
- #include <AnKi/Gr/GrObject.h>
- namespace anki
- {
- /// @addtogroup graphics
- /// @{
- /// Timestamp query.
- class TimestampQuery : public GrObject
- {
- ANKI_GR_OBJECT
- public:
- static const GrObjectType CLASS_TYPE = GrObjectType::TIMESTAMP_QUERY;
- /// Get the result if it's available. It won't block.
- TimestampQueryResult getResult(Second& timestamp) const;
- protected:
- /// Construct.
- TimestampQuery(GrManager* manager, CString name)
- : GrObject(manager, CLASS_TYPE, name)
- {
- }
- /// Destroy.
- ~TimestampQuery()
- {
- }
- private:
- /// Allocate and initialize a new instance.
- static ANKI_USE_RESULT TimestampQuery* newInstance(GrManager* manager);
- };
- /// @}
- } // end namespace anki
|