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:
authorNathan Letwory <nathan@letworyinteractive.com>2011-03-18 17:06:13 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-18 17:06:13 +0300
commit7e53769d09863b59beae4155ea0ad13c6ab2fac2 (patch)
treecb5ef0f99fa4c171fb1ce1128db19db42b14b0be /source/blender/collada/EffectExporter.h
parentb4743ccd8fdb577670d16ffdd6b3ad2132fa3fea (diff)
COLLADA conformance: don't write empty libraries for effect, image and animation
Diffstat (limited to 'source/blender/collada/EffectExporter.h')
-rw-r--r--source/blender/collada/EffectExporter.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/collada/EffectExporter.h b/source/blender/collada/EffectExporter.h
index 3a3de95458b..8fe7ef31da4 100644
--- a/source/blender/collada/EffectExporter.h
+++ b/source/blender/collada/EffectExporter.h
@@ -57,10 +57,11 @@ public:
/*COLLADASW::Surface *surface*/);
COLLADASW::ColorOrTexture getcol(float r, float g, float b, float a);
-
- //returns the array of mtex indices which have image
- //need this for exporting textures
+private:
+ /** Fills the array of mtex indices which have image. Used for exporting images. */
void createTextureIndices(Material *ma, std::vector<int> &indices);
+
+ bool hasEffects(Scene *sce);
};
#endif