diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-22 15:06:09 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-22 15:06:09 +0100 |
commit | 9bd0075cb57a0e08fff45a2b9967de287533aa44 (patch) | |
tree | f9c4db9ba5e6d3ccf2d9a116f78fed50cef43deb /floormat | |
parent | d33fb4adbfc5b43d90a3d0a541579d7724dce027 (diff) |
main: kill msaa
Diffstat (limited to 'floormat')
-rw-r--r-- | floormat/app.hpp | 3 | ||||
-rw-r--r-- | floormat/settings.hpp | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/floormat/app.hpp b/floormat/app.hpp index c7c40d78..f0222e7f 100644 --- a/floormat/app.hpp +++ b/floormat/app.hpp @@ -27,7 +27,6 @@ struct floormat_app virtual void update(float dt) = 0; virtual void maybe_initialize_chunk(const chunk_coords& pos, chunk& c) = 0; - virtual void draw_msaa(); virtual void draw() = 0; virtual void on_mouse_move(const mouse_move_event& event) noexcept = 0; @@ -44,6 +43,4 @@ struct floormat_app virtual void on_mouse_enter() noexcept = 0; }; -inline void floormat_app::draw_msaa() {} - } // namespace floormat diff --git a/floormat/settings.hpp b/floormat/settings.hpp index bfc057ed..f90e1c97 100644 --- a/floormat/settings.hpp +++ b/floormat/settings.hpp @@ -28,7 +28,6 @@ struct fm_settings fullscreen_desktop : 1 = false, borderless : 1 = false, maximized : 1 = false; - std::uint8_t msaa_samples = 16; }; } // namespace floormat |