feature/test #9

Merged
njohnson merged 318 commits from feature/test into main 2025-09-07 12:35:21 -04:00
Showing only changes of commit 0c2478cc70 - Show all commits

View File

@ -0,0 +1,41 @@
#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)
{
}
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;
}
void XGlyph::ParseData(QDataStream *aStream)
{
}