This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/shader/DoricLayout.cpp

11 lines
274 B
C++
Raw Normal View History

2021-02-25 18:06:08 +08:00
#include "DoricLayout.h"
void DoricLayout::apply(int frameSizeWidth, int frameSizeHeight) {
this->resolved = false;
this->measure(frameSizeWidth, frameSizeHeight);
}
void DoricLayout::apply() {}
void DoricLayout::measure(int targetSizeWidth, int targetSizeHeight) {}