| 360 | } |
| 361 | |
| 362 | void Renderer::setActiveGraph(uint32_t active) |
| 363 | { |
| 364 | RenderGraph* pOld = getActiveGraph(); |
| 365 | mActiveGraph = active; |
| 366 | RenderGraph* pNew = getActiveGraph(); |
| 367 | |
| 368 | if (pOld != pNew) |
| 369 | { |
| 370 | for (auto& e : mpExtensions) e->activeGraphChanged(pNew, pOld); |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | void Renderer::removeGraph(const ref<RenderGraph>& pGraph) |
| 375 | { |
no test coverage detected