blob: 51b04259b19f94c2f8fb18ed80cdef641c736021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <cstddef>
#include <cstdint>
#include <type_traits>
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 };
constexpr inline double dTILE_SIZE[3] = { 64, 64, 64 };
} // namespace floormat
|