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
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2017-02-23 13:58:20 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-04-07 12:06:50 +0300
commite8e341b585430dfca96b85ed540b398bc0af93a1 (patch)
tree1ed44b615da8248eb5b9656b117ab3c54d893d06 /source/blender/alembic
parentdf7d5382d393857c7673f5e98623866f0a3bb622 (diff)
Alembic: documented use of CacheReader struct
Diffstat (limited to 'source/blender/alembic')
-rw-r--r--source/blender/alembic/intern/abc_util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/alembic/intern/abc_util.h b/source/blender/alembic/intern/abc_util.h
index 6be86056e45..5b53c86a859 100644
--- a/source/blender/alembic/intern/abc_util.h
+++ b/source/blender/alembic/intern/abc_util.h
@@ -32,6 +32,11 @@
# define ABC_INLINE static inline
#endif
+/**
+ * @brief The CacheReader struct is only used for anonymous pointers,
+ * to interface between C and C++ code. This library only creates
+ * pointers to AbcObjectReader (or subclasses thereof).
+ */
struct CacheReader {
int unused;
};