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/blenkernel/BKE_lib_remap.h')
-rw-r--r--source/blender/blenkernel/BKE_lib_remap.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_lib_remap.h b/source/blender/blenkernel/BKE_lib_remap.h
index 0769374c9a8..5fa524e3fc6 100644
--- a/source/blender/blenkernel/BKE_lib_remap.h
+++ b/source/blender/blenkernel/BKE_lib_remap.h
@@ -159,7 +159,17 @@ typedef enum IDRemapperApplyResult {
} IDRemapperApplyResult;
typedef enum IDRemapperApplyOptions {
+ /**
+ * Update the user count of the old and new ID datablock.
+ *
+ * For remapping the old ID users will be decremented and the new ID users will be
+ * incremented. When un-assigning the old ID users will be decremented.
+ */
ID_REMAP_APPLY_UPDATE_REFCOUNT = (1 << 0),
+
+ /**
+ * Make sure that the new ID datablock will have a 'real' user.
+ */
ID_REMAP_APPLY_ENSURE_REAL = (1 << 1),
ID_REMAP_APPLY_DEFAULT = 0,