-------------------------------------------------------------------------------------- Deletion utility method --------------------------------------------------------------------------------------
| 3359 | // Deletion utility method |
| 3360 | //-------------------------------------------------------------------------------------- |
| 3361 | void ShaderCache::DeleteErrorFiles() |
| 3362 | { |
| 3363 | for (std::list<Shader*>::iterator it = m_ShaderList.begin(); it != m_ShaderList.end(); it++) |
| 3364 | { |
| 3365 | Shader* pShader = *it; |
| 3366 | |
| 3367 | DeleteErrorFile( pShader ); |
| 3368 | } |
| 3369 | } |
| 3370 | |
| 3371 | |
| 3372 | //-------------------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected