| 433 | } |
| 434 | |
| 435 | void TextureManager::InvalidateArrowTexture(ref_ptr<dp::GraphicsContext> context, |
| 436 | std::string const & texturePath /* = {} */, |
| 437 | bool useDefaultResourceFolder /* = false */) |
| 438 | { |
| 439 | CHECK(m_isInitialized, ()); |
| 440 | m_newArrowTexture = CreateArrowTexture(context, make_ref(m_textureAllocator), texturePath, useDefaultResourceFolder); |
| 441 | } |
| 442 | |
| 443 | void TextureManager::ApplyInvalidatedStaticTextures() |
| 444 | { |
no test coverage detected