blob: 6982721019c0f0e9b677ed99a2cdb1435f82f919 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#pragma once
#include <cstddef>
namespace floormat {
constexpr inline std::size_t TILE_MAX_DIM = 16;
constexpr inline std::size_t TILE_COUNT = TILE_MAX_DIM*TILE_MAX_DIM;
constexpr inline float TILE_SIZE[3] = { 64, 64, 64 };
} // namespace floormat
|