21 lines
272 B
C++
21 lines
272 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
* Copyright 2022 Blender Foundation. All rights reserved. */
|
|
|
|
/** \file
|
|
* \ingroup gpu
|
|
*/
|
|
|
|
#include "vk_fence.hh"
|
|
|
|
namespace blender::gpu {
|
|
|
|
void VKFence::signal()
|
|
{
|
|
}
|
|
|
|
void VKFence::wait()
|
|
{
|
|
}
|
|
|
|
} // namespace blender::gpu
|