2
0

BsVulkanEventQuery.h 697 B

12345678910111213141516171819202122232425262728293031
  1. //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
  2. //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
  3. #pragma once
  4. #include "BsVulkanPrerequisites.h"
  5. #include "BsEventQuery.h"
  6. namespace BansheeEngine
  7. {
  8. /** @addtogroup Vulkan
  9. * @{
  10. */
  11. /** @copydoc EventQuery */
  12. class VulkanEventQuery : public EventQuery
  13. {
  14. public:
  15. VulkanEventQuery(UINT32 deviceIdx);
  16. ~VulkanEventQuery();
  17. /** @copydoc EventQuery::begin */
  18. void begin() override;
  19. /** @copydoc EventQuery::isReady */
  20. bool isReady() const override;
  21. private:
  22. };
  23. /** @} */
  24. }