Utility/Font: Remove useless atlas release slot

This commit is contained in:
Jérôme Leclercq
2022-03-04 20:41:14 +01:00
parent f6e2871224
commit c741bad9a1
2 changed files with 0 additions and 21 deletions

View File

@@ -130,7 +130,6 @@ namespace Nz
UInt64 ComputeKey(unsigned int characterSize, TextStyleFlags style, float outlineThickness) const;
void OnAtlasCleared(const AbstractAtlas* atlas);
void OnAtlasLayerChange(const AbstractAtlas* atlas, AbstractImage* oldLayer, AbstractImage* newLayer);
void OnAtlasRelease(const AbstractAtlas* atlas);
const Glyph& PrecacheGlyph(GlyphMap& glyphMap, unsigned int characterSize, TextStyleFlags style, float outlineThickness, char32_t character) const;
static bool Initialize();
@@ -138,7 +137,6 @@ namespace Nz
NazaraSlot(AbstractAtlas, OnAtlasCleared, m_atlasClearedSlot);
NazaraSlot(AbstractAtlas, OnAtlasLayerChange, m_atlasLayerChangeSlot);
NazaraSlot(AbstractAtlas, OnAtlasRelease, m_atlasReleaseSlot);
std::shared_ptr<AbstractAtlas> m_atlas;
std::unique_ptr<FontData> m_data;