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:
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 3ac93a96661..40916cbdc61 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -465,16 +465,20 @@ typedef enum ID_Type {
if ((a) && (a)->id.newid) \
(a) = (void *)(a)->id.newid
-/* id->flag (persitent). */
+/** id->flag (persitent). */
enum {
- /* Don't delete the datablock even if unused. */
+ /** Don't delete the datablock even if unused. */
LIB_FAKEUSER = 1 << 9,
- /* The datablock structure is a sub-object of a different one.
- * Direct persistent references are not allowed. */
- LIB_PRIVATE_DATA = 1 << 10,
- /* Datablock is from a library and linked indirectly, with LIB_TAG_INDIRECT
+ /**
+ * The data-block is a sub-data of another one.
+ * Direct persistent references are not allowed.
+ */
+ LIB_EMBEDDED_DATA = 1 << 10,
+ /**
+ * Datablock is from a library and linked indirectly, with LIB_TAG_INDIRECT
* tag set. But the current .blend file also has a weak pointer to it that
- * we want to restore if possible, and silently drop if it's missing. */
+ * we want to restore if possible, and silently drop if it's missing.
+ */
LIB_INDIRECT_WEAK_LINK = 1 << 11,
};