summaryrefslogtreecommitdiffhomepage
path: root/chunk.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chunk.hpp')
-rw-r--r--chunk.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/chunk.hpp b/chunk.hpp
index 99ad1778..af2e5b13 100644
--- a/chunk.hpp
+++ b/chunk.hpp
@@ -27,9 +27,8 @@ struct chunk_coords final {
struct chunk_sampler_array final {
using shared_sampler = std::shared_ptr<tile_atlas>;
- using sampler_tuple = std::pair<shared_sampler, int>;
+ static constexpr inline int MAX_SAMPLERS = 32;
- static constexpr inline int MAX_SAMPLERS = 16;
std::vector<std::shared_ptr<tile_atlas>> samplers;
std::array<UnsignedInt, TILE_COUNT> sampler_map = {};