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:
authorGaia Clary <gaia.clary@machinimatrix.org>2019-02-19 19:45:25 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-02-19 19:49:54 +0300
commitdf8bd07313b52a69b17fbd0dc1f84637264e86ed (patch)
tree101e441e2c313cddd029f4312590f42f6e80f308 /source/blender/collada/GeometryExporter.h
parent15edda3a8e07003bef695cca939744bbea80ad18 (diff)
fix: Collada replace <polylist> export by <triangle> export for triangulated meshes.
This is a regression from Blender 2.79 where the usage of <triangles> was already implemented, but unintentionally removed in Blender 2.80 Also renamed variables for better reading.
Diffstat (limited to 'source/blender/collada/GeometryExporter.h')
-rw-r--r--source/blender/collada/GeometryExporter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/collada/GeometryExporter.h b/source/blender/collada/GeometryExporter.h
index 05cc23e2057..5eba68165d2 100644
--- a/source/blender/collada/GeometryExporter.h
+++ b/source/blender/collada/GeometryExporter.h
@@ -85,7 +85,7 @@ public:
std::string& geom_id);
// powerful because it handles both cases when there is material and when there's not
- void createPolylist(short material_index,
+ void create_mesh_primitive_list(short material_index,
bool has_uvs,
bool has_color,
Object *ob,