XPlor/libs/xassets/xglyph.cpp

44 lines
591 B
C++
Raw Normal View History

2025-09-05 21:35:05 +00:00
#include "xglyph.h"
XGlyph::XGlyph()
: XAsset()
, mLetter(0)
, mX0(0)
, mY0(0)
, mDx(0)
, mPixelWidth(0)
, mPixelHeight(0)
, mS0(0)
, mT0(0)
, mS1(0)
, mT1(0)
{
2025-09-10 21:58:26 -04:00
SetName("Glyph");
2025-09-05 21:35:05 +00:00
}
XGlyph::~XGlyph()
{
}
void XGlyph::Clear()
{
mLetter = 0;
mX0 = 0;
mY0 = 0;
mDx = 0;
mPixelWidth = 0;
mPixelHeight = 0;
mS0 = 0;
mT0 = 0;
mS1 = 0;
mT1 = 0;
}
2025-09-10 21:58:26 -04:00
void XGlyph::ParseData(XDataStream *aStream)
2025-09-05 21:35:05 +00:00
{
2025-09-10 21:58:26 -04:00
Q_UNUSED(aStream);
// TODO: Fill in XGlyph::ParseData
2025-09-05 21:35:05 +00:00
}