blob: ec59e19f0d96052cfa069323ed73adb81ffc4c09 (
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] = { 128, 128, 384 };
} // namespace floormat
|