diff options
| author | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
|---|---|---|
| committer | untodesu <kirill@untode.su> | 2025-09-11 13:51:50 +0500 |
| commit | f0cc06c7388acb32b86301965c5b2547e4e3b919 (patch) | |
| tree | d6fc939b1b660562a8abdedb3330ae66defc1bcb /game/client | |
| parent | aaed751bf4430bf4b9b30cef532b8753b9f639ce (diff) | |
| download | voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.tar.bz2 voxelius-f0cc06c7388acb32b86301965c5b2547e4e3b919.zip | |
Displace threading into core (qfortress graft)
Diffstat (limited to 'game/client')
| -rw-r--r-- | game/client/main.cc | 2 | ||||
| -rw-r--r-- | game/client/world/chunk_mesher.cc | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/game/client/main.cc b/game/client/main.cc index 06a0da2..51d4670 100644 --- a/game/client/main.cc +++ b/game/client/main.cc @@ -7,11 +7,11 @@ #include "core/resource/resource.hh" #include "core/utils/epoch.hh" +#include "core/threading.hh" #include "core/version.hh" #include "shared/game.hh" #include "shared/splash.hh" -#include "shared/threading.hh" #include "client/gui/window_title.hh" #include "client/io/glfw.hh" diff --git a/game/client/world/chunk_mesher.cc b/game/client/world/chunk_mesher.cc index 9f5ce6c..53c4882 100644 --- a/game/client/world/chunk_mesher.cc +++ b/game/client/world/chunk_mesher.cc @@ -4,12 +4,13 @@ #include "core/math/crc64.hh" +#include "core/threading.hh" + #include "shared/world/chunk.hh" #include "shared/world/dimension.hh" #include "shared/world/voxel_registry.hh" #include "shared/coord.hh" -#include "shared/threading.hh" #include "client/world/chunk_quad.hh" #include "client/world/voxel_atlas.hh" |
