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/io/collada/MaterialExporter.h')
-rw-r--r--source/blender/io/collada/MaterialExporter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/io/collada/MaterialExporter.h b/source/blender/io/collada/MaterialExporter.h
index 7d40347097c..c684e96be19 100644
--- a/source/blender/io/collada/MaterialExporter.h
+++ b/source/blender/io/collada/MaterialExporter.h
@@ -51,7 +51,7 @@ class MaterialsExporter : COLLADASW::LibraryMaterials {
// used in forEachMaterialInScene
template<class Functor> class ForEachMaterialFunctor {
std::vector<std::string>
- mMat; // contains list of material names, to avoid duplicate calling of f
+ mMat; /* contains list of material names, to avoid duplicate calling of f */
Functor *f;
public:
@@ -81,8 +81,8 @@ template<class Functor> class ForEachMaterialFunctor {
};
struct MaterialFunctor {
- // calls f for each unique material linked to each object in sce
- // f should have
+ /* calls f for each unique material linked to each object in sce
+ * f should have */
// void operator()(Material *ma)
template<class Functor>
void forEachMaterialInExportSet(Scene *sce, Functor &f, LinkNode *export_set)