summaryrefslogtreecommitdiff
path: root/ui/gameMainWindow.cpp
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2025-03-19 03:42:35 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2025-03-19 03:42:35 +0000
commit271d5c55260cc8a0198938f3259f793e3957e3e3 (patch)
tree9e4ffbb7a47bb7e027aee5b01cb2665532e2b391 /ui/gameMainWindow.cpp
parentRemove lots of stuff not required or superseded with ImGui use (diff)
downloadilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.bz2
ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.tar.xz
ilt-271d5c55260cc8a0198938f3259f793e3957e3e3.zip
Remove unrequired UIShader
Diffstat (limited to 'ui/gameMainWindow.cpp')
-rw-r--r--ui/gameMainWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/gameMainWindow.cpp b/ui/gameMainWindow.cpp
index 280d1a8..cfc64e3 100644
--- a/ui/gameMainWindow.cpp
+++ b/ui/gameMainWindow.cpp
@@ -25,7 +25,7 @@ public:
explicit GameMainToolbar(GameMainSelector * gms) : gms {gms} { }
void
- render(const UIShader &) const override
+ render() const override
{
if (IltGui::BeginToolbar("bottomBar", ImGuiDir_Down, TOOLBAR_HEIGHT)) {
if (ImGui::ImageButton("Build rails", *buildRailsIcon, TOOLBAR_ICON_SIZE)) {
@@ -49,7 +49,7 @@ private:
GameMainSelector * gms;
};
-GameMainWindow::GameMainWindow(size_t w, size_t h) : WindowContent {w, h}, SceneRenderer {{w, h}, 0}
+GameMainWindow::GameMainWindow(size_t w, size_t h) : SceneRenderer {{w, h}, 0}
{
uiComponents.create<ManualCameraController>(glm::vec2 {310'727'624, 494'018'810});
auto gms = uiComponents.create<GameMainSelector>(&camera);
@@ -90,7 +90,7 @@ GameMainWindow::render() const
glEnable(GL_BLEND);
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glDisable(GL_DEPTH_TEST);
- uiComponents.apply(&UIComponent::render, uiShader);
+ uiComponents.apply(&UIComponent::render);
}
void