mirror of https://github.com/AxioDL/metaforce.git
Merge pull request #17 from lioncash/endian
FontCache: Specify athena endian types explicitly
This commit is contained in:
commit
349626ac93
|
@ -98,13 +98,13 @@ private:
|
||||||
std::vector<Glyph> m_glyphs;
|
std::vector<Glyph> m_glyphs;
|
||||||
std::unordered_map<atUint16, std::vector<std::pair<atUint16, atInt16>>> m_kernAdjs;
|
std::unordered_map<atUint16, std::vector<std::pair<atUint16, atInt16>>> m_kernAdjs;
|
||||||
|
|
||||||
struct TT_KernHead : athena::io::DNA<athena::Big> {
|
struct TT_KernHead : athena::io::DNA<athena::Endian::Big> {
|
||||||
AT_DECL_DNA
|
AT_DECL_DNA
|
||||||
Value<atUint32> length;
|
Value<atUint32> length;
|
||||||
Value<atUint16> coverage;
|
Value<atUint16> coverage;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct TT_KernSubHead : athena::io::DNA<athena::Big> {
|
struct TT_KernSubHead : athena::io::DNA<athena::Endian::Big> {
|
||||||
AT_DECL_DNA
|
AT_DECL_DNA
|
||||||
Value<atUint16> nPairs;
|
Value<atUint16> nPairs;
|
||||||
Value<atUint16> searchRange;
|
Value<atUint16> searchRange;
|
||||||
|
@ -112,7 +112,7 @@ private:
|
||||||
Value<atUint16> rangeShift;
|
Value<atUint16> rangeShift;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct TT_KernPair : athena::io::DNA<athena::Big> {
|
struct TT_KernPair : athena::io::DNA<athena::Endian::Big> {
|
||||||
AT_DECL_DNA
|
AT_DECL_DNA
|
||||||
Value<atUint16> left;
|
Value<atUint16> left;
|
||||||
Value<atUint16> right;
|
Value<atUint16> right;
|
||||||
|
|
Loading…
Reference in New Issue