Corrected FeatureSet::getNextFeatureIndex and ShaderFeature::getProcessIndex signed mismatch.

This commit is contained in:
rextimmy 2016-02-21 15:10:58 +10:00
parent 6a2d394d90
commit 36daca8d8e
4 changed files with 8 additions and 8 deletions

View file

@ -170,7 +170,7 @@ void FeatureSet::removeFeature( const FeatureType &type )
}
}
U32 FeatureSet::getNextFeatureIndex( const FeatureType &type, S32 index ) const
S32 FeatureSet::getNextFeatureIndex( const FeatureType &type, S32 index ) const
{
for ( U32 i=0; i < mFeatures.size(); i++ )
{