1 #ifndef MSP_GL_QUERY_BACKEND_H_
2 #define MSP_GL_QUERY_BACKEND_H_
4 #include <msp/core/noncopyable.h>
10 class VulkanQueryPool: public NonCopyable
12 friend class VulkanCommands;
17 VulkanQueryPool(unsigned);
18 VulkanQueryPool(VulkanQueryPool &&);
23 unsigned get_result(unsigned) const;
26 using QueryPoolBackend = VulkanQueryPool;
28 unsigned get_vulkan_query_type(unsigned);