Files
test2/intern/opensubdiv/stub/opensubdiv_stub.cc
Hans Goudey 8157f33911 Cleanup: Move opensubdiv C-API headers to C++
All the relevant code is C++ now, so we don't need to complicate things
with the trip through C anymore. We will still need some wrappers, since
opensubdiv is an optional dependency though. The goal is to make it
simpler to remove the unnecessary/costly abstraction levels between
Blender mesh data and the opensubdiv code.
2023-12-11 07:50:29 -05:00

19 lines
289 B
C++

/* SPDX-FileCopyrightText: 2018 Blender Foundation
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Author: Sergey Sharybin. */
#include "opensubdiv_capi.hh"
#include <cstddef>
void openSubdiv_init() {}
void openSubdiv_cleanup() {}
int openSubdiv_getVersionHex()
{
return 0;
}