1 /* 2 * Copyright 2020 Google LLC 3 * SPDX-License-Identifier: MIT 4 */ 5 6 #ifndef VKR_QUERY_POOL_H 7 #define VKR_QUERY_POOL_H 8 9 #include "vkr_common.h" 10 11 struct vkr_query_pool { 12 struct vkr_object base; 13 }; 14 VKR_DEFINE_OBJECT_CAST(query_pool, VK_OBJECT_TYPE_QUERY_POOL, VkQueryPool) 15 16 void 17 vkr_context_init_query_pool_dispatch(struct vkr_context *ctx); 18 19 #endif /* VKR_QUERY_POOL_H */ 20