summaryrefslogtreecommitdiffhomepage
path: root/floormat/settings.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'floormat/settings.hpp')
-rw-r--r--floormat/settings.hpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/floormat/settings.hpp b/floormat/settings.hpp
index 39b5b137..01ded6c4 100644
--- a/floormat/settings.hpp
+++ b/floormat/settings.hpp
@@ -20,16 +20,15 @@ struct fm_settings
Magnum::Math::Vector2<int> resolution{1024, 768};
Corrade::Containers::String title{"Test"};
Corrade::Containers::String disabled_extensions; // TODO
- std::uint8_t msaa_samples = 16;
bool vsync = true;
fm_gpu_debug gpu_debug = fm_gpu_debug::on;
fm_log_level log_level = fm_log_level::normal;
- std::uint8_t resizable : 1 = true,
- fullscreen : 1 = false,
- fullscreen_desktop : 1 = false,
- borderless : 1 = false,
- maximized : 1 = false,
- msaa : 1 = false;
+ unsigned resizable : 1 = true,
+ fullscreen : 1 = false,
+ fullscreen_desktop : 1 = false,
+ borderless : 1 = false,
+ maximized : 1 = false;
+ std::uint8_t msaa_samples = 16;
};
} // namespace floormat