HDK
|
Library and file format version numbers. More...
Go to the source code of this file.
Classes | |
struct | openvdb::OPENVDB_VERSION_NAME::VersionId |
Namespaces | |
openvdb | |
openvdb::OPENVDB_VERSION_NAME | |
Macros | |
#define | OPENVDB_ABI_VERSION_NUMBER |
The ABI version that OpenVDB was built with. More... | |
#define | OPENVDB_LIBRARY_VERSION_STRING |
Library version number string of the form "<major>.<minor>.<patch>". More... | |
#define | OPENVDB_LIBRARY_ABI_VERSION_STRING |
Library version number string of the form "<major>.<minor>.<patch>abi<abi>". More... | |
#define | OPENVDB_LIBRARY_VERSION_NUMBER |
Library version number as a packed integer ("%02x%02x%04x", major, minor, patch) More... | |
#define | OPENVDB_PACKAGE_URL "https://github.com/sideeffects/openvdb_dev.git" |
Where this version was compiled from if it comes from a git repo. More... | |
#define | OPENVDB_PACKAGE_REVISION "1ad2266321b982b218e76625fdf6514327104264" |
#define | OPENVDB_VERSION_NAME |
The version namespace name for this library version. More... | |
#define | OPENVDB_USE_BLOSC |
#define | OPENVDB_USE_ZLIB |
#define | OPENVDB_USE_DELAYED_LOADING |
#define | OPENVDB_USE_EXPLICIT_INSTANTIATION |
#define | OPENVDB_INSTANTIATE extern template OPENVDB_TEMPLATE_IMPORT |
#define | OPENVDB_INSTANTIATE_CLASS extern template class OPENVDB_TEMPLATE_IMPORT |
#define | OPENVDB_INSTANTIATE_STRUCT extern template struct OPENVDB_TEMPLATE_IMPORT |
#define | OPENVDB_REAL_TREE_INSTANTIATE(Function) |
#define | OPENVDB_NUMERIC_TREE_INSTANTIATE(Function) |
#define | OPENVDB_VEC3_TREE_INSTANTIATE(Function) |
#define | OPENVDB_VOLUME_TREE_INSTANTIATE(Function) |
#define | OPENVDB_ALL_TREE_INSTANTIATE(Function) |
#define | OPENVDB_USE_VERSION_NAMESPACE |
#define | OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER |
Library major, minor and patch version numbers. More... | |
#define | OPENVDB_LIBRARY_MINOR_VERSION_NUMBER |
Library major, minor and patch version numbers. More... | |
#define | OPENVDB_LIBRARY_PATCH_VERSION_NUMBER |
Library major, minor and patch version numbers. More... | |
Functions | |
constexpr const char * | openvdb::OPENVDB_VERSION_NAME::getLibraryVersionString () |
Return a library version number string of the form "<major>.<minor>.<patch>". More... | |
constexpr const char * | openvdb::OPENVDB_VERSION_NAME::getLibraryAbiVersionString () |
Return a library version number string of the form "<major>.<minor>.<patch>abi<abi>". More... | |
constexpr const char * | openvdb::OPENVDB_VERSION_NAME::getPackageUrl () |
constexpr const char * | openvdb::OPENVDB_VERSION_NAME::getPackageRevision () |
Variables | |
const int32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_MAGIC = 0x56444220 |
The magic number is stored in the first four bytes of every VDB file. More... | |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_LIBRARY_MAJOR_VERSION |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_LIBRARY_MINOR_VERSION |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_LIBRARY_PATCH_VERSION |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_LIBRARY_VERSION |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_ABI_VERSION |
const uint32_t | openvdb::OPENVDB_VERSION_NAME::OPENVDB_FILE_VERSION = 224 |
The current version number of the VDB file format. More... | |
Library and file format version numbers.
When the library is built with the latest ABI, its namespace has the form openvdb::vX_Y, where X and Y are the major and minor version numbers.
The library can be built using an older ABI by changing the value of the OPENVDB_ABI_VERSION_NUMBER. (e.g., via -DOPENVDB_ABI_VERSION_NUMBER=N
). In that case, the namespace has the form openvdb::vX_YabiN, where N is the ABI version number.
The ABI version must be set consistently when building code that depends on OpenVDB.
The ABI version number defaults to the library major version number, which gets incremented whenever changes are made to the ABI of the Grid class or related classes (Tree, Transform, Metadata, etc.). Setting the ABI version number to an earlier library version number disables grid ABI changes made since that library version.
The library minor version number gets incremented whenever a change is made to any aspect of the public API (not just the grid API) that necessitates changes to client code. Changes to APIs in private or internal namespaces do not trigger a minor version number increment; such APIs should not be used in client code.
A patch version number increment indicates a change—usually a new feature or a bug fix—that does not necessitate changes to client code but rather only recompilation of that code (because the library namespace incorporates the version number).
The file format version number gets incremented when it becomes possible to write files that cannot safely be read with older versions of the library. Not all files written in a newer format are incompatible with older libraries, however. And in general, files containing grids of unknown type can be read safely, although the unknown grids will not be accessible.
Definition in file version.h.
#define OPENVDB_ABI_VERSION_NUMBER |
The ABI version that OpenVDB was built with.
#define OPENVDB_ALL_TREE_INSTANTIATE | ( | Function | ) |
#define OPENVDB_INSTANTIATE extern template OPENVDB_TEMPLATE_IMPORT |
#define OPENVDB_INSTANTIATE_CLASS extern template class OPENVDB_TEMPLATE_IMPORT |
#define OPENVDB_INSTANTIATE_STRUCT extern template struct OPENVDB_TEMPLATE_IMPORT |
#define OPENVDB_LIBRARY_ABI_VERSION_STRING |
#define OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER |
#define OPENVDB_LIBRARY_MINOR_VERSION_NUMBER |
#define OPENVDB_LIBRARY_PATCH_VERSION_NUMBER |
#define OPENVDB_LIBRARY_VERSION_NUMBER |
#define OPENVDB_LIBRARY_VERSION_STRING |
#define OPENVDB_NUMERIC_TREE_INSTANTIATE | ( | Function | ) |
#define OPENVDB_PACKAGE_REVISION "1ad2266321b982b218e76625fdf6514327104264" |
#define OPENVDB_PACKAGE_URL "https://github.com/sideeffects/openvdb_dev.git" |
#define OPENVDB_REAL_TREE_INSTANTIATE | ( | Function | ) |
#define OPENVDB_USE_VERSION_NAMESPACE |
By default, the OPENVDB_REQUIRE_VERSION_NAME macro is undefined, and symbols from the version namespace are promoted to the top-level namespace so that, for example, openvdb::v5_0::io::File can be referred to simply as openvdb::io::File.
When OPENVDB_REQUIRE_VERSION_NAME is defined, symbols must be fully namespace-qualified.
#define OPENVDB_VEC3_TREE_INSTANTIATE | ( | Function | ) |
#define OPENVDB_VERSION_NAME |
The version namespace name for this library version.
When the ABI version number matches the library major version number, symbols are named as in the following examples:
where X and Y are the major and minor version numbers.
When the ABI version number does not match the library major version number, symbol names include the ABI version:
where X, Y and N are the major, minor and ABI version numbers, respectively.
#define OPENVDB_VOLUME_TREE_INSTANTIATE | ( | Function | ) |