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:
authorRoel Spruit <roel@spruitje.nl>2004-01-05 18:58:48 +0300
committerRoel Spruit <roel@spruitje.nl>2004-01-05 18:58:48 +0300
commit56db828948e94ccad3117a17c49c9152ca674202 (patch)
tree7b8724f3f8aab57966bf7ac41b32878fb4e8092f /source/blender/yafray/intern
parent3cf499e044f28b058f5b6b0c9f206ecc03101f11 (diff)
- Added projectfiles for yafray
- renamed some variables in yafray_render.cpp so msvc doesn't whine I'm not fluent in MSVC, so I hope I don't screw up :)
Diffstat (limited to 'source/blender/yafray/intern')
-rw-r--r--source/blender/yafray/intern/yafray_Render.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/source/blender/yafray/intern/yafray_Render.cpp b/source/blender/yafray/intern/yafray_Render.cpp
index 6f759cd81f9..28b53f78f70 100644
--- a/source/blender/yafray/intern/yafray_Render.cpp
+++ b/source/blender/yafray/intern/yafray_Render.cpp
@@ -262,10 +262,10 @@ bool yafrayRender_t::getAllMatTexObs()
return false;
}
// else make sure every object is found in dupliMtx_list
- for (map<string, Object*>::const_iterator obn=dup_srcob.begin();
- obn!=dup_srcob.end();++obn)
+ for (map<string, Object*>::const_iterator obn2=dup_srcob.begin();
+ obn2!=dup_srcob.end();++obn2)
{
- if (dupliMtx_list.find(obn->first)==dupliMtx_list.end()) {
+ if (dupliMtx_list.find(obn2->first)==dupliMtx_list.end()) {
cout << "ERROR: Source ob missing for dupli's\n";
return false;
}
@@ -550,12 +550,12 @@ void yafrayRender_t::writeMaterialsAndModulators()
xmlfile << ostr.str();
// modulators
- for (int m=0;m<8;m++) {
+ for (int m2=0;m2<8;m2++) {
- if (matr->septex & (1<<m)) continue;// all active channels
+ if (matr->septex & (1<<m2)) continue;// all active channels
// ignore null mtex
- MTex* mtex = matr->mtex[m];
+ MTex* mtex = matr->mtex[m2];
if (mtex==NULL) continue;
// ignore null tex
@@ -567,7 +567,7 @@ void yafrayRender_t::writeMaterialsAndModulators()
ostr.str("");
ostr << "\t<modulator>\n";
- ostr << "\t\t<input value=\"" << blendmat->first + "_map" << m << "\" />\n";
+ ostr << "\t\t<input value=\"" << blendmat->first + "_map" << m2 << "\" />\n";
// blendtype
string ts = "mix";
@@ -808,10 +808,10 @@ void yafrayRender_t::writeObject(Object* obj, const vector<VlakRen*> &VLR_list,
// all faces using the index list created above
xmlfile << "\t\t<faces>\n";
- for (vector<VlakRen*>::const_iterator fci=VLR_list.begin();
- fci!=VLR_list.end();++fci)
+ for (vector<VlakRen*>::const_iterator fci2=VLR_list.begin();
+ fci2!=VLR_list.end();++fci2)
{
- VlakRen* vlr = *fci;
+ VlakRen* vlr = *fci2;
Material* fmat = vlr->mat;
bool EXPORT_VCOL = ((fmat->mode & (MA_VERTEXCOL|MA_VERTEXCOLP))!=0);
char* fmatname = fmat->id.name;