diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 03:42:35 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-03-19 03:42:35 +0000 |
commit | 271d5c55260cc8a0198938f3259f793e3957e3e3 (patch) | |
tree | 9e4ffbb7a47bb7e027aee5b01cb2665532e2b391 /ui/windowContent.h | |
parent | Remove lots of stuff not required or superseded with ImGui use (diff) | |
download | ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.bz2 ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.xz ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.zip |
Remove unrequired UIShader
Diffstat (limited to 'ui/windowContent.h')
-rw-r--r-- | ui/windowContent.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ui/windowContent.h b/ui/windowContent.h index 474445a..d7fcad2 100644 --- a/ui/windowContent.h +++ b/ui/windowContent.h @@ -2,16 +2,13 @@ #include "chronology.h" #include "collection.h" -#include "gfx/gl/uiShader.h" #include "special_members.h" #include "stdTypeDefs.h" #include "uiComponent.h" // IWYU pragma: keep -#include <functional> class WindowContent : public StdTypeDefs<WindowContent> { public: - using Factory = std::function<Ptr(size_t width, size_t height)>; - WindowContent(size_t width, size_t height); + WindowContent() = default; virtual ~WindowContent() = default; NO_MOVE(WindowContent); NO_COPY(WindowContent); @@ -22,5 +19,4 @@ public: protected: ::Collection<UIComponent> uiComponents; - UIShader uiShader; }; |