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:
authorHans Goudey <h.goudey@me.com>2021-07-30 20:15:01 +0300
committerHans Goudey <h.goudey@me.com>2021-07-30 20:15:01 +0300
commita9ea310d30d63f735dbdc106a4515c6ae4bf7893 (patch)
treebd28a5b20d85759867ee01747aefeb5f235ab18d /source/blender/blenkernel/BKE_mesh_remesh_voxel.h
parent0b10a964741d19cf7ada6d72cfaa6ffea9eded4b (diff)
Cleanup: Move remesh files to C++
This will be helpful for some cleanups I'd like to do, including removing the unecessary C API for OpenVDB and unifying some attribute transfer code.
Diffstat (limited to 'source/blender/blenkernel/BKE_mesh_remesh_voxel.h')
-rw-r--r--source/blender/blenkernel/BKE_mesh_remesh_voxel.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_mesh_remesh_voxel.h b/source/blender/blenkernel/BKE_mesh_remesh_voxel.h
index 2265fa6e105..3ada2eb6c6c 100644
--- a/source/blender/blenkernel/BKE_mesh_remesh_voxel.h
+++ b/source/blender/blenkernel/BKE_mesh_remesh_voxel.h
@@ -54,7 +54,9 @@ struct Mesh *BKE_mesh_remesh_quadriflow_to_mesh_nomain(struct Mesh *mesh,
bool preserve_sharp,
bool preserve_boundary,
bool adaptive_scale,
- void *update_cb,
+ void (*update_cb)(void *,
+ float progress,
+ int *cancel),
void *update_cb_data);
/* Data reprojection functions */