| 505 | } |
| 506 | |
| 507 | void RenderGraphEditor::onFrameRender(RenderContext* pRenderContext, const ref<Fbo>& pTargetFbo) |
| 508 | { |
| 509 | const float4 clearColor(0.25, 0.25, 0.25, 1); |
| 510 | pRenderContext->clearFbo(pTargetFbo.get(), clearColor, 1.0f, 0, FboAttachmentType::All); |
| 511 | mRenderGraphUIs[mCurrentGraphIndex].updateGraph(pRenderContext); |
| 512 | } |
| 513 | |
| 514 | void RenderGraphEditor::onResize(uint32_t width, uint32_t height) |
| 515 | { |
nothing calls this directly
no test coverage detected