| 1708 | } |
| 1709 | |
| 1710 | Renderable* IMGUIObjectManager::GetRenderable(HandleType handle) |
| 1711 | { |
| 1712 | auto type = (handle >> 56); |
| 1713 | if (type > (unsigned)IMGUIObjectType::Max) return nullptr; |
| 1714 | return pools_[type]->Get(handle); |
| 1715 | } |
| 1716 | |
| 1717 | bool IMGUIObjectManager::DestroyRenderable(HandleType handle) |
| 1718 | { |
no test coverage detected