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-06-08 13:32:57 +0300
committerJoseph Eagar <joeedh@gmail.com>2022-06-08 13:33:18 +0300
commitca29376e002c5427513ee2ed6633dd82811ac1bd (patch)
tree188213fadc17c2d8f6897fcf73dc0d4cbb74c03e
parentb52760a0236f45e1a5a16236a7aeb9888b60aced (diff)
Cleanup: Move sculpt_automasking.c to c++
m---------release/datafiles/locale0
m---------release/scripts/addons0
m---------release/scripts/addons_contrib0
-rw-r--r--source/blender/editors/sculpt_paint/CMakeLists.txt2
-rw-r--r--source/blender/editors/sculpt_paint/sculpt_automasking.cc (renamed from source/blender/editors/sculpt_paint/sculpt_automasking.c)39
m---------source/tools0
6 files changed, 23 insertions, 18 deletions
diff --git a/release/datafiles/locale b/release/datafiles/locale
-Subproject 71e0f87dd1ba4e0ed5f619b031045a428e53423
+Subproject 915744ad8e255d1723d77671a6c6b074773c219
diff --git a/release/scripts/addons b/release/scripts/addons
-Subproject bcb71eea69a7b83c44112a5872ccd67cae96ec6
+Subproject d990559d7b19593cbaff17ba59b8dd9d0d60e61
diff --git a/release/scripts/addons_contrib b/release/scripts/addons_contrib
-Subproject 61efd17f87b45c3049091127a5619219f9d2a82
+Subproject 95107484d076bc965239942e857c83433bfa86d
diff --git a/source/blender/editors/sculpt_paint/CMakeLists.txt b/source/blender/editors/sculpt_paint/CMakeLists.txt
index 9a9efc9e6cf..b1b52d16c6d 100644
--- a/source/blender/editors/sculpt_paint/CMakeLists.txt
+++ b/source/blender/editors/sculpt_paint/CMakeLists.txt
@@ -58,7 +58,7 @@ set(SRC
paint_vertex_weight_ops.c
paint_vertex_weight_utils.c
sculpt.c
- sculpt_automasking.c
+ sculpt_automasking.cc
sculpt_boundary.c
sculpt_brush_types.c
sculpt_cloth.c
diff --git a/source/blender/editors/sculpt_paint/sculpt_automasking.c b/source/blender/editors/sculpt_paint/sculpt_automasking.cc
index d7a2a18504c..94417defe48 100644
--- a/source/blender/editors/sculpt_paint/sculpt_automasking.c
+++ b/source/blender/editors/sculpt_paint/sculpt_automasking.cc
@@ -9,6 +9,7 @@
#include "BLI_blenlib.h"
#include "BLI_hash.h"
+#include "BLI_index_range.hh"
#include "BLI_math.h"
#include "BLI_task.h"
@@ -46,6 +47,8 @@
#include <math.h>
#include <stdlib.h>
+using blender::IndexRange;
+
AutomaskingCache *SCULPT_automasking_active_cache_get(SculptSession *ss)
{
if (ss->cache) {
@@ -178,7 +181,7 @@ typedef struct AutomaskFloodFillData {
static bool automask_floodfill_cb(
SculptSession *ss, int from_v, int to_v, bool UNUSED(is_duplicate), void *userdata)
{
- AutomaskFloodFillData *data = userdata;
+ AutomaskFloodFillData *data = (AutomaskFloodFillData *)userdata;
data->automask_factor[to_v] = 1.0f;
data->automask_factor[from_v] = 1.0f;
@@ -198,7 +201,7 @@ static float *SCULPT_topology_automasking_init(Sculpt *sd, Object *ob, float *au
}
const int totvert = SCULPT_vertex_count_get(ss);
- for (int i = 0; i < totvert; i++) {
+ for (int i : IndexRange(totvert)) {
automask_factor[i] = 0.0f;
}
@@ -209,12 +212,13 @@ static float *SCULPT_topology_automasking_init(Sculpt *sd, Object *ob, float *au
const float radius = ss->cache ? ss->cache->radius : FLT_MAX;
SCULPT_floodfill_add_active(sd, ob, ss, &flood, radius);
- AutomaskFloodFillData fdata = {
- .automask_factor = automask_factor,
- .radius = radius,
- .use_radius = ss->cache && sculpt_automasking_is_constrained_by_radius(brush),
- .symm = SCULPT_mesh_symmetry_xyz_get(ob),
- };
+ AutomaskFloodFillData fdata = {0};
+
+ fdata.automask_factor = automask_factor;
+ fdata.radius = radius;
+ fdata.use_radius = ss->cache && sculpt_automasking_is_constrained_by_radius(brush);
+ fdata.symm = SCULPT_mesh_symmetry_xyz_get(ob);
+
copy_v3_v3(fdata.location, SCULPT_active_vertex_co_get(ss));
SCULPT_floodfill_execute(ss, &flood, automask_floodfill_cb, &fdata);
SCULPT_floodfill_free(&flood);
@@ -238,7 +242,7 @@ static float *sculpt_face_sets_automasking_init(Sculpt *sd, Object *ob, float *a
int tot_vert = SCULPT_vertex_count_get(ss);
int active_face_set = SCULPT_active_face_set_get(ss);
- for (int i = 0; i < tot_vert; i++) {
+ for (int i : IndexRange(tot_vert)) {
if (!SCULPT_vertex_has_face_set(ss, i, active_face_set)) {
automask_factor[i] *= 0.0f;
}
@@ -262,9 +266,9 @@ float *SCULPT_boundary_automasking_init(Object *ob,
}
const int totvert = SCULPT_vertex_count_get(ss);
- int *edge_distance = MEM_callocN(sizeof(int) * totvert, "automask_factor");
+ int *edge_distance = (int *)MEM_callocN(sizeof(int) * totvert, "automask_factor");
- for (int i = 0; i < totvert; i++) {
+ for (int i : IndexRange(totvert)) {
edge_distance[i] = EDGE_DISTANCE_INF;
switch (mode) {
case AUTOMASK_INIT_BOUNDARY_EDGES:
@@ -280,8 +284,8 @@ float *SCULPT_boundary_automasking_init(Object *ob,
}
}
- for (int propagation_it = 0; propagation_it < propagation_steps; propagation_it++) {
- for (int i = 0; i < totvert; i++) {
+ for (int propagation_it : IndexRange(propagation_steps)) {
+ for (int i : IndexRange(totvert)) {
if (edge_distance[i] != EDGE_DISTANCE_INF) {
continue;
}
@@ -295,7 +299,7 @@ float *SCULPT_boundary_automasking_init(Object *ob,
}
}
- for (int i = 0; i < totvert; i++) {
+ for (int i : IndexRange(totvert)) {
if (edge_distance[i] == EDGE_DISTANCE_INF) {
continue;
}
@@ -326,7 +330,8 @@ AutomaskingCache *SCULPT_automasking_cache_init(Sculpt *sd, Brush *brush, Object
return NULL;
}
- AutomaskingCache *automasking = MEM_callocN(sizeof(AutomaskingCache), "automasking cache");
+ AutomaskingCache *automasking = (AutomaskingCache *)MEM_callocN(sizeof(AutomaskingCache),
+ "automasking cache");
SCULPT_automasking_cache_settings_update(automasking, ss, sd, brush);
SCULPT_boundary_info_ensure(ob);
@@ -334,8 +339,8 @@ AutomaskingCache *SCULPT_automasking_cache_init(Sculpt *sd, Brush *brush, Object
return automasking;
}
- automasking->factor = MEM_malloc_arrayN(totvert, sizeof(float), "automask_factor");
- for (int i = 0; i < totvert; i++) {
+ automasking->factor = (float *)MEM_malloc_arrayN(totvert, sizeof(float), "automask_factor");
+ for (int i : IndexRange(totvert)) {
automasking->factor[i] = 1.0f;
}
diff --git a/source/tools b/source/tools
-Subproject ccc8fceb6bd83ffbf6e5207247fb8f76fc47a5b
+Subproject 01b4c0e4a172819414229445c314be34527bf41