-------------------------------------------------------------------------------------- Deletion utility method --------------------------------------------------------------------------------------
| 3406 | // Deletion utility method |
| 3407 | //-------------------------------------------------------------------------------------- |
| 3408 | void ShaderCache::DeleteObjectFiles() |
| 3409 | { |
| 3410 | for (std::list<Shader*>::iterator it = m_ShaderList.begin(); it != m_ShaderList.end(); it++) |
| 3411 | { |
| 3412 | Shader* pShader = *it; |
| 3413 | |
| 3414 | DeleteObjectFile( pShader ); |
| 3415 | } |
| 3416 | } |
| 3417 | |
| 3418 | |
| 3419 | //-------------------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected