Ignore:
Timestamp:
05/24/06 13:48:26 (18 years ago)
Author:
gumbau
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Geom/shared/GTGeometry/src/GeoMesh.cpp

    r980 r985  
    146146                if (!objmesh.mSubMesh[i].mBones.empty()) 
    147147                { 
    148                         for (int j = 0; j < objmesh.mSubMesh[i].mBones.size(); j++) 
     148                        for (unsigned int j = 0; j < objmesh.mSubMesh[i].mBones.size(); j++) 
    149149                        { 
    150150                                mSubMesh[i].mBones.push_back(objmesh.mSubMesh[i].mBones[j]); 
     
    164164        if (!objmesh.mBones.empty()) 
    165165        { 
    166                 for (int j = 0; j < objmesh.mBones.size(); j++) 
     166                for (unsigned int j = 0; j < objmesh.mBones.size(); j++) 
    167167                { 
    168168                        mBones.push_back(objmesh.mBones[j]); 
     
    263263                if (!objmesh.mSubMesh[i].mBones.empty()) 
    264264                { 
    265                         for (int j = 0; j < objmesh.mSubMesh[i].mBones.size(); j++) 
     265                        for (unsigned int j = 0; j < objmesh.mSubMesh[i].mBones.size(); j++) 
    266266                        { 
    267267                                mSubMesh[i].mBones.push_back(objmesh.mSubMesh[i].mBones[j]); 
     
    281281        if (!objmesh.mBones.empty()) 
    282282        { 
    283                 for (int j = 0; j < objmesh.mBones.size(); j++) 
     283                for (unsigned int j = 0; j < objmesh.mBones.size(); j++) 
    284284                { 
    285285                        mBones.push_back(objmesh.mBones[j]); 
     
    428428                } 
    429429 
    430                 acumVerts       +=      mSubMesh[i].mVertexBuffer->mVertexCount; 
     430                acumVerts       +=      long(mSubMesh[i].mVertexBuffer->mVertexCount); 
    431431 
    432432                // Copiar las tiras 
     
    439439                        mesh->mSubMesh[i].mStrip        =       new Index*[mSubMesh[i].mStripCount]; 
    440440 
    441                         offset  =       &(mesh->mSubMesh[i].mIndex[0]) - &(mSubMesh[i].mIndex[0]); 
     441                        offset  =       int(&(mesh->mSubMesh[i].mIndex[0]) - &(mSubMesh[i].mIndex[0])); 
    442442                         
    443443                        for (size_t j = 0;      j < mSubMesh[i].mStripCount;    j++) 
     
    499499                } 
    500500                 
    501                 acumVerts       +=      mSubMesh[i].mVertexBuffer->mVertexCount; 
     501                acumVerts       +=      long(mSubMesh[i].mVertexBuffer->mVertexCount); 
    502502        } 
    503503 
Note: See TracChangeset for help on using the changeset viewer.