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/app.hpp | |
parent | d33fb4adbfc5b43d90a3d0a541579d7724dce027 (diff) |
main: kill msaa
Diffstat (limited to 'floormat/app.hpp')
-rw-r--r-- | floormat/app.hpp | 3 |
1 files changed, 0 insertions, 3 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 |