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:22:28 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-02-05 11:49:50 +0300
commit6a686b0bfbdee935fbd6f584f15985b1a8cd4406 (patch)
treec8dc0e7c91070e075feb91d605a4438a6a448846 /source/blender/depsgraph
parent7636e9785dc11fc9f11f89ba055f414e6efe43fa (diff)
Cleanup: BKE_library: rename id_copy to BKE_id_copy.
Time to follow conventions for that one as well.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc
index ede0333ea48..4db27e2ddf5 100644
--- a/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc
+++ b/source/blender/depsgraph/intern/eval/deg_eval_copy_on_write.cc
@@ -275,7 +275,7 @@ struct ValidateData {
bool is_valid;
};
-/* Similar to generic id_copy() but does not require main and assumes pointer
+/* Similar to generic BKE_id_copy() but does not require main and assumes pointer
* is already allocated,
*/
bool id_copy_inplace_no_main(const ID *id, ID *newid)
@@ -702,7 +702,7 @@ ID *deg_expand_copy_on_write_datablock(const Depsgraph *depsgraph,
* - We don't want heap-allocations here.
* - We don't want bmain's content to be freed when main is freed. */
bool done = false;
- /* First we handle special cases which are not covered by id_copy() yet.
+ /* First we handle special cases which are not covered by BKE_id_copy() yet.
* or cases where we want to do something smarter than simple datablock
* copy. */
const ID_Type id_type = GS(id_orig->name);