mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
13 lines
211 B
C++
13 lines
211 B
C++
#include "gx/font/FaceData.hpp"
|
|
#include "util/SFile.hpp"
|
|
|
|
FACEDATA::~FACEDATA() {
|
|
if (this->face) {
|
|
FT_Done_Face(this->face);
|
|
}
|
|
|
|
if (this->data) {
|
|
SFile::Unload(this->data);
|
|
}
|
|
}
|