|
@@ -531,9 +531,9 @@ bool ProcessedShaderMaterial::_createPasses( MaterialFeatureData &stageFeatures,
|
|
|
ShaderRenderPassData passData;
|
|
|
U32 texIndex = 0;
|
|
|
|
|
|
- for( U32 i=0; i < FEATUREMGR->getFeatureCount(); i++ )
|
|
|
+ for( U32 featureIDx=0; featureIDx < FEATUREMGR->getFeatureCount(); featureIDx++ )
|
|
|
{
|
|
|
- const FeatureInfo &info = FEATUREMGR->getAt( i );
|
|
|
+ const FeatureInfo &info = FEATUREMGR->getAt(featureIDx);
|
|
|
if ( !stageFeatures.features.hasFeature( *info.type ) )
|
|
|
continue;
|
|
|
|
|
@@ -562,7 +562,7 @@ bool ProcessedShaderMaterial::_createPasses( MaterialFeatureData &stageFeatures,
|
|
|
#if defined(TORQUE_DEBUG) && defined( TORQUE_OPENGL)
|
|
|
if(oldTexNumber != texIndex)
|
|
|
{
|
|
|
- for(int i = oldTexNumber; i < texIndex; i++)
|
|
|
+ for(int texNum = oldTexNumber; texNum < texIndex; texNum++)
|
|
|
{
|
|
|
AssertFatal(passData.mSamplerNames[ oldTexNumber ].isNotEmpty(), avar( "ERROR: ShaderGen feature %s don't set used sampler name", info.feature->getName().c_str()) );
|
|
|
}
|
|
@@ -579,9 +579,9 @@ bool ProcessedShaderMaterial::_createPasses( MaterialFeatureData &stageFeatures,
|
|
|
}
|
|
|
|
|
|
#if defined(TORQUE_DEBUG) && defined( TORQUE_OPENGL)
|
|
|
- for(int i = 0; i < texIndex; i++)
|
|
|
+ for(int samplerIDx = 0; samplerIDx < texIndex; samplerIDx++)
|
|
|
{
|
|
|
- AssertFatal(passData.mSamplerNames[ i ].isNotEmpty(),"");
|
|
|
+ AssertFatal(passData.mSamplerNames[samplerIDx].isNotEmpty(),"");
|
|
|
}
|
|
|
#endif
|
|
|
|