blob: 05e32044ce9ef4376176f64c9c43ac12d0aad294 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#pragma once
#include "config/types.h"
#include <glm/vec2.hpp>
#include <span>
#include <vector>
class TexturePacker {
public:
using Position = TextureAbsCoord;
using Size = TextureAbsCoord;
struct Area {
#ifndef __cpp_aggregate_paren_init
constexpr Area(Position p, Size s) : position {std::move(p)}, size {std::move(s)} { }
#endif
Position position;
Size size;
bool
operator<(const Area & other) const
{
return area(size) < area(other.size);
}
};
using Image = Size;
using Space = Area;
using Positions = std::vector<Position>;
using Result = std::pair<Positions, Size>;
TexturePacker(std::span<const Image>);
Result pack(Size) const;
Result pack() const;
Size minSize() const;
static decltype(Size::x) area(const Size & size);
private:
std::span<const Image> inputImages;
std::vector<size_t> sortedIndexes;
GLsizei maxTextureSize;
};
|