Files
palladium/source/ultra/layout.cpp
tobid7 2e652a3c24 More stuff done at Project Ultra
- Added renderspace
- Revision System (to not always update pRenderspace
- added some test scene
2026-03-28 13:52:36 +01:00

17 lines
390 B
C++

#include <pd/ultra/layout.hpp>
namespace PD {
namespace Ultra {
PD_API void Layout::Add(ElementBase& elem) { *pElements.Allocate() = &elem; }
PD_API void Layout::SetFont(PD::Li::Font& font) { pList.SetFont(&font); }
PD_API void Layout::Render() {
pList.Clear();
for (auto& it : pElements) {
it->Update(pCanvas);
it->Draw(pList);
}
}
} // namespace Ultra
} // namespace PD