[Bf-blender-cvs] [57620af33c3] master: Cleanup: Remove unused BMesh function

Hans Goudey noreply at git.blender.org
Thu Sep 29 06:16:48 CEST 2022


Commit: 57620af33c3d11028afc43a7311cb69e8c3d573c
Author: Hans Goudey
Date:   Wed Sep 28 22:36:06 2022 -0500
Branches: master
https://developer.blender.org/rB57620af33c3d11028afc43a7311cb69e8c3d573c

Cleanup: Remove unused BMesh function

===================================================================

M	source/blender/blenkernel/BKE_customdata.h
M	source/blender/blenkernel/intern/customdata.cc

===================================================================

diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h
index 22e4a2bce87..3b31183f2c4 100644
--- a/source/blender/blenkernel/BKE_customdata.h
+++ b/source/blender/blenkernel/BKE_customdata.h
@@ -457,12 +457,6 @@ const char *CustomData_get_active_layer_name(const struct CustomData *data, int
  */
 const char *CustomData_get_render_layer_name(const struct CustomData *data, int type);
 
-/**
- * Copies the data from source to the data element at index in the first layer of type
- * no effect if there is no layer of type.
- */
-void CustomData_set(const struct CustomData *data, int index, int type, const void *source);
-
 void CustomData_bmesh_set(const struct CustomData *data,
                           void *block,
                           int type,
diff --git a/source/blender/blenkernel/intern/customdata.cc b/source/blender/blenkernel/intern/customdata.cc
index 66b929d7c55..ea23ec245c2 100644
--- a/source/blender/blenkernel/intern/customdata.cc
+++ b/source/blender/blenkernel/intern/customdata.cc
@@ -3654,23 +3654,6 @@ void *CustomData_set_layer_n(const CustomData *data, const int type, const int n
   return ptr;
 }
 
-void CustomData_set(const CustomData *data, const int index, const int type, const void *source)
-{
-  void *dest = CustomData_get(data, index, type);
-  const LayerTypeInfo *typeInfo = layerType_getInfo(type);
-
-  if (!dest) {
-    return;
-  }
-
-  if (typeInfo->copy) {
-    typeInfo->copy(source, dest, 1);
-  }
-  else {
-    memcpy(dest, source, typeInfo->size);
-  }
-}
-
 /* BMesh functions */
 
 void CustomData_bmesh_update_active_layers(CustomData *fdata, CustomData *ldata)



More information about the Bf-blender-cvs mailing list