mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
31 lines
474 B
C++
31 lines
474 B
C++
#pragma once
|
|
|
|
#include "PLBigEndian.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
struct RenderedFontCatalogHeader
|
|
{
|
|
static const int kVersion = 1;
|
|
|
|
BEUInt32_t m_version;
|
|
BEUInt32_t m_pathsOffset;
|
|
BEUInt16_t m_numPaths;
|
|
BEUInt16_t m_numRFonts;
|
|
};
|
|
|
|
struct RenderedFontCatalogPathEntry
|
|
{
|
|
BEUInt16_t m_pathOffset;
|
|
BEUInt16_t m_pathSize;
|
|
};
|
|
|
|
struct RenderedFontCatalogRFontEntry
|
|
{
|
|
uint8_t m_pathIndex;
|
|
uint8_t m_hacks;
|
|
uint8_t m_fontSize;
|
|
uint8_t m_isAA;
|
|
};
|
|
}
|