| 606 | } |
| 607 | |
| 608 | ref_ptr<Texture> TextureManager::GetArrowTexture() const |
| 609 | { |
| 610 | CHECK(m_isInitialized, ()); |
| 611 | if (m_newArrowTexture) |
| 612 | return make_ref(m_newArrowTexture); |
| 613 | |
| 614 | return make_ref(m_arrowTexture); |
| 615 | } |
| 616 | |
| 617 | ref_ptr<Texture> TextureManager::GetSMAAAreaTexture() const |
| 618 | { |
no test coverage detected