2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2022 Blender Authors
|
2023-05-31 16:19:06 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2022-10-31 16:01:02 +01:00
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup gpu
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "vk_query.hh"
|
2023-09-21 15:21:32 +02:00
|
|
|
#include "vk_common.hh"
|
2022-10-31 16:01:02 +01:00
|
|
|
|
|
|
|
|
namespace blender::gpu {
|
|
|
|
|
|
2023-09-21 15:21:32 +02:00
|
|
|
void VKQueryPool::init(GPUQueryType /*type*/)
|
|
|
|
|
{
|
|
|
|
|
NOT_YET_IMPLEMENTED
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VKQueryPool::begin_query()
|
|
|
|
|
{
|
|
|
|
|
NOT_YET_IMPLEMENTED
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VKQueryPool::end_query()
|
|
|
|
|
{
|
|
|
|
|
NOT_YET_IMPLEMENTED
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void VKQueryPool::get_occlusion_result(MutableSpan<uint32_t> /*r_values*/)
|
|
|
|
|
{
|
|
|
|
|
NOT_YET_IMPLEMENTED
|
|
|
|
|
}
|
2022-10-31 16:01:02 +01:00
|
|
|
|
2023-01-31 15:49:04 +11:00
|
|
|
} // namespace blender::gpu
|