Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorLukas Tönne <lukas.toenne@gmail.com>2015-03-23 15:31:16 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-03-26 16:13:42 +0300
commitb41ffbea51578a3053cf08892ba71f9c27541987 (patch)
tree8b3cc9e324dddfa26bb3e99e50cd1f5ea8894eb0 /source
parent22309a0be692806aad496a7ad00570e442a9ff64 (diff)
Stub function for Alembic init when Alembic is not enabled.
Diffstat (limited to 'source')
-rw-r--r--source/blender/pointcache/PTC_api.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/pointcache/PTC_api.cpp b/source/blender/pointcache/PTC_api.cpp
index 30ac05af645..cc29eb302be 100644
--- a/source/blender/pointcache/PTC_api.cpp
+++ b/source/blender/pointcache/PTC_api.cpp
@@ -44,6 +44,12 @@ extern "C" {
using namespace PTC;
+#ifndef WITH_PTC_ALEMBIC
+void PTC_alembic_init()
+{
+}
+#endif
+
void PTC_error_handler_std(void)
{
ErrorHandler::clear_default_handler();