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:
Diffstat (limited to 'source/blender/collada/MeshImporter.h')
-rw-r--r--source/blender/collada/MeshImporter.h37
1 files changed, 20 insertions, 17 deletions
diff --git a/source/blender/collada/MeshImporter.h b/source/blender/collada/MeshImporter.h
index 163ecfce9ea..08b7edd2a3b 100644
--- a/source/blender/collada/MeshImporter.h
+++ b/source/blender/collada/MeshImporter.h
@@ -105,23 +105,26 @@ private:
std::map<COLLADAFW::UniqueId, MaterialIdPrimitiveArrayMap> geom_uid_mat_mapping_map; // crazy name!
std::multimap<COLLADAFW::UniqueId, COLLADAFW::UniqueId> materials_mapped_to_geom; //< materials that have already been mapped to a geometry. A pair of geom uid and mat uid, one geometry can have several materials
- bool set_poly_indices(MPoly *mpoly,
- MLoop *mloop,
- int loop_index,
- unsigned int *indices,
- int loop_count);
-
- void set_face_uv(MLoopUV *mloopuv,
- UVDataWrapper &uvs,
- int loop_index,
- COLLADAFW::IndexList& index_list,
- int count);
-
- void set_vcol(MLoopCol *mloopcol,
- VCOLDataWrapper &vob,
- int loop_index,
- COLLADAFW::IndexList& index_list,
- int count);
+ bool set_poly_indices(
+ MPoly *mpoly,
+ MLoop *mloop,
+ int loop_index,
+ unsigned int *indices,
+ int loop_count);
+
+ void set_face_uv(
+ MLoopUV *mloopuv,
+ UVDataWrapper &uvs,
+ int loop_index,
+ COLLADAFW::IndexList& index_list,
+ int count);
+
+ void set_vcol(
+ MLoopCol *mloopcol,
+ VCOLDataWrapper &vob,
+ int loop_index,
+ COLLADAFW::IndexList& index_list,
+ int count);
#ifdef COLLADA_DEBUG
void print_index_list(COLLADAFW::IndexList& index_list);