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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-02-04 18:29:02 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-05 11:49:50 +0300
commit8ebb8add85d92e3d3b4a7c4e978ba775acefd098 (patch)
treef1ee839ac50ad956c43d88ea312033069d7a45b0 /source/blender/blenkernel/BKE_library.h
parent6a686b0bfbdee935fbd6f584f15985b1a8cd4406 (diff)
Cleanup: comments before items in enums.
Diffstat (limited to 'source/blender/blenkernel/BKE_library.h')
-rw-r--r--source/blender/blenkernel/BKE_library.h39
1 files changed, 24 insertions, 15 deletions
diff --git a/source/blender/blenkernel/BKE_library.h b/source/blender/blenkernel/BKE_library.h
index ee25cea75d0..6584a975671 100644
--- a/source/blender/blenkernel/BKE_library.h
+++ b/source/blender/blenkernel/BKE_library.h
@@ -81,21 +81,30 @@ enum {
* Implies LIB_ID_CREATE_NO_MAIN. */
LIB_ID_CREATE_NO_ALLOCATE = 1 << 2,
- LIB_ID_CREATE_NO_DEG_TAG = 1 << 8, /* Do not tag new ID for update in depsgraph. */
-
- /*** Specific options to some ID types or usages. ***/
- /* May be ignored by unrelated ID copying functions. */
- LIB_ID_COPY_NO_PROXY_CLEAR = 1 << 16, /* Object only, needed by make_local code. */
- LIB_ID_COPY_NO_PREVIEW = 1 << 17, /* Do not copy preview data, when supported. */
- LIB_ID_COPY_CACHES = 1 << 18, /* Copy runtime data caches. */
- LIB_ID_COPY_NO_ANIMDATA = 1 << 19, /* Don't copy id->adt, used by ID datablock localization routines. */
- LIB_ID_COPY_CD_REFERENCE = 1 << 20, /* Mesh: Reference CD data layers instead of doing real copy. */
-
- /*** XXX Hackish/not-so-nice specific behaviors needed for some corner cases. ***/
- /* Ideally we should not have those, but we need them for now... */
- LIB_ID_COPY_ACTIONS = 1 << 24, /* EXCEPTION! Deep-copy actions used by animdata of copied ID. */
- LIB_ID_COPY_KEEP_LIB = 1 << 25, /* Keep the library pointer when copying datablock outside of bmain. */
- LIB_ID_COPY_SHAPEKEY = 1 << 26, /* EXCEPTION! Deep-copy shapekeys used by copied obdata ID. */
+ /* Do not tag new ID for update in depsgraph. */
+ LIB_ID_CREATE_NO_DEG_TAG = 1 << 8,
+
+ /* *** Specific options to some ID types or usages. *** */
+ /* *** May be ignored by unrelated ID copying functions. *** */
+ /* Object only, needed by make_local code. */
+ LIB_ID_COPY_NO_PROXY_CLEAR = 1 << 16,
+ /* Do not copy preview data, when supported. */
+ LIB_ID_COPY_NO_PREVIEW = 1 << 17,
+ /* Copy runtime data caches. */
+ LIB_ID_COPY_CACHES = 1 << 18,
+ /* Don't copy id->adt, used by ID datablock localization routines. */
+ LIB_ID_COPY_NO_ANIMDATA = 1 << 19,
+ /* Mesh: Reference CD data layers instead of doing real copy. */
+ LIB_ID_COPY_CD_REFERENCE = 1 << 20,
+
+ /* *** XXX Hackish/not-so-nice specific behaviors needed for some corner cases. *** */
+ /* *** Ideally we should not have those, but we need them for now... *** */
+ /* EXCEPTION! Deep-copy actions used by animdata of copied ID. */
+ LIB_ID_COPY_ACTIONS = 1 << 24,
+ /* Keep the library pointer when copying datablock outside of bmain. */
+ LIB_ID_COPY_KEEP_LIB = 1 << 25,
+ /* EXCEPTION! Deep-copy shapekeys used by copied obdata ID. */
+ LIB_ID_COPY_SHAPEKEY = 1 << 26,
};
void BKE_libblock_copy_ex(struct Main *bmain, const struct ID *id, struct ID **r_newid, const int flag);