| 226 | } |
| 227 | |
| 228 | CRefPtr<CNativeTexture> CTextureCache::GetOrCreateTexture(const TextureInfo & ti) |
| 229 | { |
| 230 | CachedTexture * base_texture = GetOrCreateCachedTexture(ti); |
| 231 | if (!base_texture) |
| 232 | return nullptr; |
| 233 | |
| 234 | return base_texture->GetTexture(); |
| 235 | } |
| 236 | |
| 237 | #ifdef DAEDALUS_DEBUG_DISPLAYLIST |
| 238 | void CTextureCache::Snapshot(const MutexLock & lock, std::vector< STextureInfoSnapshot > & snapshot) const |
no outgoing calls
no test coverage detected