| 661 | |
| 662 | |
| 663 | std::shared_ptr<TextureData> TextureCache::GetLoadedTexture(std::filesystem::path const& path) |
| 664 | { |
| 665 | std::lock_guard<std::shared_mutex> guard(m_LoadedTexturesMutex); |
| 666 | return m_LoadedTextures[path.generic_string()]; |
| 667 | } |
| 668 | |
| 669 | bool TextureCache::ProcessRenderingThreadCommands(CommonRenderPasses& passes, float timeLimitMilliseconds) |
| 670 | { |
nothing calls this directly
no outgoing calls
no test coverage detected