tornavis/source/blender/gpu/vulkan/vk_drawlist.cc

20 lines
336 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later
* Copyright 2022 Blender Foundation. All rights reserved. */
/** \file
* \ingroup gpu
*/
#include "vk_drawlist.hh"
namespace blender::gpu {
void VKDrawList::append(GPUBatch * /*batch*/, int /*i_first*/, int /*i_count*/)
{
}
void VKDrawList::submit()
{
}
} // namespace blender::gpu