diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-08 02:32:39 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2025-04-08 02:32:39 +0100 |
commit | c6fb8dd64e0c323e46c73162e21a3a34103bb407 (patch) | |
tree | 89b3d5963a83bcf8bc6e49029e1ac3bb7d46b191 /test/testMainWindow.cpp | |
parent | Create WindowContent with a size object (diff) | |
download | ilt-c6fb8dd64e0c323e46c73162e21a3a34103bb407.tar.bz2 ilt-c6fb8dd64e0c323e46c73162e21a3a34103bb407.tar.xz ilt-c6fb8dd64e0c323e46c73162e21a3a34103bb407.zip |
Create Windows with a size object
Not individual width/height parameters.
Diffstat (limited to 'test/testMainWindow.cpp')
-rw-r--r-- | test/testMainWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testMainWindow.cpp b/test/testMainWindow.cpp index 4a76044..d048682 100644 --- a/test/testMainWindow.cpp +++ b/test/testMainWindow.cpp @@ -2,7 +2,7 @@ #include <boost/test/test_tools.hpp> #include <format> -TestMainWindow::TestMainWindow() : MainWindow {1, 1, __FILE__, SDL_WINDOW_OPENGL | SDL_WINDOW_HIDDEN} +TestMainWindow::TestMainWindow() : MainWindow {{1, 1}, __FILE__, SDL_WINDOW_OPENGL | SDL_WINDOW_HIDDEN} { glEnable(GL_DEBUG_OUTPUT); glDebugMessageCallback( |