blob: 3575e42497737bab66e1a768263f0f740a5a2559 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include "lightmap.hpp"
#include "src/local-coords.hpp"
#ifdef __clang__
#pragma clang diagnostic ignored "-Wfloat-equal"
#endif
namespace floormat {
lightmap_shader::~lightmap_shader() = default;
bool lightmap_shader::light_s::operator==(const light_s&) const noexcept = default;
static constexpr Vector2 output_size = TILE_MAX_DIM * TILE_SIZE2 * 3;
lightmap_shader::lightmap_shader()
{
}
} // namespace floormat
|