| 198 | } |
| 199 | |
| 200 | void FeatureSet::exclude( const FeatureSet &features ) |
| 201 | { |
| 202 | PROFILE_SCOPE( FeatureSet_Exclude ); |
| 203 | |
| 204 | for ( U32 i=0; i < features.mFeatures.size(); i++ ) |
| 205 | removeFeature( *features.mFeatures[i].type ); |
| 206 | |
| 207 | mDescription.clear(); |
| 208 | } |
| 209 | |
| 210 | void FeatureSet::merge( const FeatureSet &features ) |
| 211 | { |
no test coverage detected