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:
authorCampbell Barton <ideasman42@gmail.com>2011-05-11 06:14:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-05-11 06:14:43 +0400
commitcd55aeaf6def3c9460d1a5ef1f3bd8edc32d0737 (patch)
tree5b6162812c9bde44182631646ec79830b44e55b4 /source/blender/blenkernel/BKE_customdata.h
parent0f329ebdf19ab7773565b705614c867b01aeadfe (diff)
set many vars & functions as static,
also commented invalid pin theme alpha assignment so bmesh branch builds with -Werror
Diffstat (limited to 'source/blender/blenkernel/BKE_customdata.h')
-rw-r--r--source/blender/blenkernel/BKE_customdata.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_customdata.h b/source/blender/blenkernel/BKE_customdata.h
index 276e8dd3d2f..7f3c5b02ecb 100644
--- a/source/blender/blenkernel/BKE_customdata.h
+++ b/source/blender/blenkernel/BKE_customdata.h
@@ -96,6 +96,9 @@ void CustomData_data_add(int type, void *data1, void *data2);
void CustomData_copy(const struct CustomData *source, struct CustomData *dest,
CustomDataMask mask, int alloctype, int totelem);
+/* TODO, not really a public function but readfile.c needs it */
+void CustomData_update_typemap(struct CustomData *data);
+
/* same as the above, except that this will preserve existing layers, and only
* add the layers that were not there yet */
void CustomData_merge(const struct CustomData *source, struct CustomData *dest,