| 365 | } |
| 366 | |
| 367 | void MaterialManager::reInitInstance( BaseMaterialDefinition *target ) |
| 368 | { |
| 369 | Vector<BaseMatInstance*>::iterator iter = mMatInstanceList.begin(); |
| 370 | for ( ; iter != mMatInstanceList.end(); iter++ ) |
| 371 | { |
| 372 | if ( (*iter)->getMaterial() == target ) |
| 373 | (*iter)->reInit(); |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | void MaterialManager::updateTime() |
| 378 | { |
no test coverage detected