-------------------------------------------------------------------------------------- Deletion utility method --------------------------------------------------------------------------------------
| 3452 | // Deletion utility method |
| 3453 | //-------------------------------------------------------------------------------------- |
| 3454 | void ShaderCache::DeleteHashFiles() |
| 3455 | { |
| 3456 | for (std::list<Shader*>::iterator it = m_ShaderList.begin(); it != m_ShaderList.end(); it++) |
| 3457 | { |
| 3458 | Shader* pShader = *it; |
| 3459 | |
| 3460 | DeleteHashFile( pShader ); |
| 3461 | } |
| 3462 | } |
| 3463 | |
| 3464 | |
| 3465 | //-------------------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected