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

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

21 lines
395 B
C++
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2022 Blender Foundation */
/** \file
* \ingroup gpu
*/
#include "vk_query.hh"
namespace blender::gpu {
void VKQueryPool::init(GPUQueryType /*type*/) {}
void VKQueryPool::begin_query() {}
void VKQueryPool::end_query() {}
void VKQueryPool::get_occlusion_result(MutableSpan<uint32_t> /*r_values*/) {}
2023-01-31 15:49:04 +11:00
} // namespace blender::gpu