From 819815d7461b7ec7607d3ce520e84908ccdf162d Mon Sep 17 00:00:00 2001 From: compugab Date: Thu, 28 May 2026 19:09:43 -0400 Subject: [PATCH] Match dLytMapCapture_c::isBusyRendering and execute --- src/d/lyt/d_lyt_map_capture.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/d/lyt/d_lyt_map_capture.cpp b/src/d/lyt/d_lyt_map_capture.cpp index 46686efc..c8ead0c9 100644 --- a/src/d/lyt/d_lyt_map_capture.cpp +++ b/src/d/lyt/d_lyt_map_capture.cpp @@ -30,3 +30,11 @@ void dLytMapCapture_c::executeState_RenderingWaitStep2() { } } void dLytMapCapture_c::finalizeState_RenderingWaitStep2() {} + +bool dLytMapCapture_c::isBusyRendering() const{ + return mIsBusyRendering; +} + +void dLytMapCapture_c::execute() { + mStateMgr.executeState(); +}