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>2012-05-07 22:09:59 +0400
committerGaia Clary <gaia.clary@machinimatrix.org>2012-05-07 22:09:59 +0400
commit98ba7dfecf454d8536ef63d8a5bd31c2e687a62e (patch)
tree5593f5f1f663ffd0c91a8c734ebda5d653491c41 /source/blender/collada/GeometryExporter.h
parent353ef9541a37faa009e62a2969fc96d160260c6b (diff)
Collada: patch #31331: Implementation of 'Apply Modifiers'
Diffstat (limited to 'source/blender/collada/GeometryExporter.h')
-rw-r--r--source/blender/collada/GeometryExporter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/collada/GeometryExporter.h b/source/blender/collada/GeometryExporter.h
index 5d79fabb713..55dc179e5e2 100644
--- a/source/blender/collada/GeometryExporter.h
+++ b/source/blender/collada/GeometryExporter.h
@@ -69,6 +69,7 @@ public:
bool has_uvs,
bool has_color,
Object *ob,
+ Mesh *me,
std::string& geom_id,
std::vector<Face>& norind);
@@ -98,6 +99,8 @@ private:
std::set<std::string> exportedGeometry;
const ExportSettings *export_settings;
+
+ Mesh * get_mesh(Object *ob, int apply_modifiers);
};
struct GeometryFunctor {