Fix compilation
This commit is contained in:
parent
853e01c192
commit
ffc58e9806
|
|
@ -21,7 +21,9 @@ namespace Nz
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
GuillotineImageAtlas();
|
GuillotineImageAtlas();
|
||||||
virtual ~GuillotineImageAtlas();
|
GuillotineImageAtlas(const GuillotineImageAtlas&) = delete;
|
||||||
|
GuillotineImageAtlas(GuillotineImageAtlas&&) noexcept = default;
|
||||||
|
~GuillotineImageAtlas() = default;
|
||||||
|
|
||||||
void Clear() override;
|
void Clear() override;
|
||||||
|
|
||||||
|
|
@ -38,6 +40,9 @@ namespace Nz
|
||||||
void SetRectChoiceHeuristic(GuillotineBinPack::FreeRectChoiceHeuristic heuristic);
|
void SetRectChoiceHeuristic(GuillotineBinPack::FreeRectChoiceHeuristic heuristic);
|
||||||
void SetRectSplitHeuristic(GuillotineBinPack::GuillotineSplitHeuristic heuristic);
|
void SetRectSplitHeuristic(GuillotineBinPack::GuillotineSplitHeuristic heuristic);
|
||||||
|
|
||||||
|
GuillotineImageAtlas& operator=(const GuillotineImageAtlas&) = delete;
|
||||||
|
GuillotineImageAtlas& operator=(GuillotineImageAtlas&&) noexcept = default;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
struct Layer;
|
struct Layer;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,6 @@ namespace Nz
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
GuillotineImageAtlas::~GuillotineImageAtlas() = default;
|
|
||||||
|
|
||||||
void GuillotineImageAtlas::Clear()
|
void GuillotineImageAtlas::Clear()
|
||||||
{
|
{
|
||||||
m_layers.clear();
|
m_layers.clear();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue