-------------------------------------------------------------------------------------- Deletion utility method --------------------------------------------------------------------------------------
| 3382 | // Deletion utility method |
| 3383 | //-------------------------------------------------------------------------------------- |
| 3384 | void ShaderCache::DeleteAssemblyFiles() |
| 3385 | { |
| 3386 | for (std::list<Shader*>::iterator it = m_ShaderList.begin(); it != m_ShaderList.end(); it++) |
| 3387 | { |
| 3388 | Shader* pShader = *it; |
| 3389 | |
| 3390 | DeleteAssemblyFile( pShader ); |
| 3391 | } |
| 3392 | } |
| 3393 | |
| 3394 | |
| 3395 | //-------------------------------------------------------------------------------------- |
nothing calls this directly
no outgoing calls
no test coverage detected