Files
test/source/blender/gpu/vulkan/vk_query.cc
Jeroen Bakker dd3e23e812 Vulkan: Show Missing Implementations
This PR will print a message when a vulkan method isn't implemented.
So we can keep track of what still needs to be implemented.

Pull Request: https://projects.blender.org/blender/blender/pulls/112671
2023-09-21 15:21:32 +02:00

35 lines
525 B
C++

/* 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
}
} // namespace blender::gpu