| 223 | } |
| 224 | |
| 225 | HnTaskManager::~HnTaskManager() |
| 226 | { |
| 227 | // Remove all tasks from the render index |
| 228 | for (const auto& it : m_TaskInfo) |
| 229 | { |
| 230 | m_RenderIndex.RemoveTask(it.second.Id); |
| 231 | } |
| 232 | m_TaskInfo.clear(); |
| 233 | } |
| 234 | |
| 235 | pxr::HdTaskSharedPtr HnTaskManager::GetTask(TaskUID UID) const |
| 236 | { |
nothing calls this directly
no test coverage detected