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:
authorJoseph Eagar <joeedh@gmail.com>2022-02-22 09:43:14 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-02-22 09:43:14 +0300
commit08d04e4ed6f71157477f53e20e881382d809da27 (patch)
tree6f713b43830aeb8d7428849ffe3d4ef1944b0461 /source/blender/editors/sculpt_paint/sculpt_undo.c
parentad99638844e7747f70aa4be53fe87a0ede1372e5 (diff)
temp-sculpt-colors: Fix mask by color and
a few other minor bugs
Diffstat (limited to 'source/blender/editors/sculpt_paint/sculpt_undo.c')
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_undo.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/source/blender/editors/sculpt_paint/sculpt_undo.c b/source/blender/editors/sculpt_paint/sculpt_undo.c
index 0db85ebc430..42437a6bb64 100644
--- a/source/blender/editors/sculpt_paint/sculpt_undo.c
+++ b/source/blender/editors/sculpt_paint/sculpt_undo.c
@@ -343,14 +343,14 @@ static bool sculpt_undo_restore_color(bContext *C, SculptUndoNode *unode)
/* Note: even with loop colors we still store (derived)
* vertex colors for original data lookup. */
- if (unode->maxvert && !unode->totloop) {
+ if (unode->col && !unode->loop_col) {
BKE_pbvh_swap_colors(ss->pbvh, unode->col, unode->index, unode->totvert);
modified = true;
}
Mesh *me = BKE_object_get_original_mesh(ob);
- if (unode->totloop && unode->maxloop == me->totloop) {
+ if (unode->loop_col && unode->maxloop == me->totloop) {
BKE_pbvh_swap_colors(ss->pbvh, unode->loop_col, unode->loop_index, unode->totloop);
modified = true;
@@ -1221,7 +1221,7 @@ static void sculpt_undo_store_color(Object *ob, SculptUndoNode *unode)
* vertex colors for original data lookup. */
BKE_pbvh_store_colors_vertex(ss->pbvh, unode->col, unode->index, allvert);
- if (unode->maxloop && unode->totloop) {
+ if (unode->loop_col && unode->totloop) {
BKE_pbvh_store_colors(ss->pbvh, unode->loop_col, unode->loop_index, unode->totloop);
}
}
@@ -1402,11 +1402,13 @@ SculptUndoNode *SCULPT_undo_push_node(Object *ob, PBVHNode *node, SculptUndoType
BKE_pbvh_node_get_verts(ss->pbvh, node, &vert_indices, NULL);
memcpy(unode->index, vert_indices, sizeof(int) * allvert);
- BKE_pbvh_node_num_loops(ss->pbvh, unode->node, &uniqloop, NULL);
- BKE_pbvh_node_get_loops(ss->pbvh, unode->node, &loop_indices, NULL);
- memcpy(unode->loop_index, loop_indices, sizeof(int) * uniqloop);
+ if (unode->loop_index) {
+ BKE_pbvh_node_num_loops(ss->pbvh, unode->node, &uniqloop, NULL);
+ BKE_pbvh_node_get_loops(ss->pbvh, unode->node, &loop_indices, NULL);
+ memcpy(unode->loop_index, loop_indices, sizeof(int) * uniqloop);
- unode->maxloop = BKE_object_get_original_mesh(ob)->totloop;
+ unode->maxloop = BKE_object_get_original_mesh(ob)->totloop;
+ }
}
switch (type) {