MCPcopy Create free account
hub / github.com/AGenUI/AGenUI / updateComponentSize

Method updateComponentSize

core/src/surface/agenui_surface.cpp:110–118  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110void Surface::updateComponentSize(const ComponentRenderInfo& info) {
111 if (_virtualDom) {
112 BatchScope batchScope(_virtualDom->batchGuard());
113 VirtualDOM* virtualDomImpl = static_cast<VirtualDOM*>(_virtualDom);
114 virtualDomImpl->updateComponentSize(info);
115 } else {
116 AGENUI_LOG("failed: virtualDom is null");
117 }
118}
119
120void Surface::updateTabsSelectedIndex(const ComponentRenderInfo& info) {
121 if (_virtualDom) {

Callers 1

handleRenderFinishMethod · 0.45

Calls 1

batchGuardMethod · 0.45

Tested by

no test coverage detected