Files
test2/source/blender/gpu/vulkan/vk_query.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
525 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2022 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup gpu
*/
#include "vk_query.hh"
#include "vk_common.hh"
namespace blender::gpu {
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
}
2023-01-31 15:49:04 +11:00
} // namespace blender::gpu