12 lines
231 B
C++
12 lines
231 B
C++
/* SPDX-FileCopyrightText: 2015 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#include "openvdb_capi.h"
|
|
#include <openvdb/openvdb.h>
|
|
|
|
int OpenVDB_getVersionHex()
|
|
{
|
|
return openvdb::OPENVDB_LIBRARY_VERSION;
|
|
}
|