| 79 | Drawing::RenderTarget& rt, WindowBase& w, int32_t left, int32_t top, int32_t right, int32_t bottom); |
| 80 | |
| 81 | std::vector<std::unique_ptr<WindowBase>>::iterator WindowGetIterator(const WindowBase* w) |
| 82 | { |
| 83 | return std::find_if(gWindowList.begin(), gWindowList.end(), [w](auto&& w2) { return w == w2.get(); }); |
| 84 | } |
| 85 | |
| 86 | void WindowVisitEach(std::function<void(WindowBase*)> func) |
| 87 | { |
no test coverage detected