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"
|
|
|
|
|
|
|
|
|
|
namespace blender::gpu {
|
|
|
|
|
|
2023-03-29 16:50:54 +02:00
|
|
|
void VKQueryPool::init(GPUQueryType /*type*/) {}
|
2022-10-31 16:01:02 +01:00
|
|
|
|
2023-03-29 16:50:54 +02:00
|
|
|
void VKQueryPool::begin_query() {}
|
2022-10-31 16:01:02 +01:00
|
|
|
|
2023-03-29 16:50:54 +02:00
|
|
|
void VKQueryPool::end_query() {}
|
2022-10-31 16:01:02 +01:00
|
|
|
|
2023-03-29 16:50:54 +02:00
|
|
|
void VKQueryPool::get_occlusion_result(MutableSpan<uint32_t> /*r_values*/) {}
|
2022-10-31 16:01:02 +01:00
|
|
|
|
2023-01-31 15:49:04 +11:00
|
|
|
} // namespace blender::gpu
|