- Added container - Made container the base of Layout - Set Containers theirself as pParent for Elements on Push
15 lines
299 B
C++
15 lines
299 B
C++
#include <pd/ultra/canvas.hpp>
|
|
#include <pd/ultra/elems/element.hpp>
|
|
|
|
namespace PD {
|
|
namespace Ultra {
|
|
PD_API bool ElementBase::RevisionUpdate(PD::u32 req) {
|
|
if (req != pCanvasRev) {
|
|
pCanvasRev = req;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
} // namespace Ultra
|
|
} // namespace PD
|