Adjust privacy for recent changes
This commit is contained in:
parent
7e2839c438
commit
f00a94e1ec
|
@ -315,6 +315,8 @@ struct GlyphBitmapDataFormat17
|
||||||
|
|
||||||
struct CBLC
|
struct CBLC
|
||||||
{
|
{
|
||||||
|
friend struct CBDT;
|
||||||
|
|
||||||
static const hb_tag_t tableTag = HB_OT_TAG_CBLC;
|
static const hb_tag_t tableTag = HB_OT_TAG_CBLC;
|
||||||
|
|
||||||
inline bool sanitize (hb_sanitize_context_t *c) const
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
||||||
|
@ -325,7 +327,7 @@ struct CBLC
|
||||||
sizeTables.sanitize (c, this));
|
sizeTables.sanitize (c, this));
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
protected:
|
||||||
const IndexSubtableRecord *find_table (hb_codepoint_t glyph,
|
const IndexSubtableRecord *find_table (hb_codepoint_t glyph,
|
||||||
unsigned int *x_ppem, unsigned int *y_ppem) const
|
unsigned int *x_ppem, unsigned int *y_ppem) const
|
||||||
{
|
{
|
||||||
|
|
|
@ -43,6 +43,8 @@ namespace OT {
|
||||||
|
|
||||||
struct loca
|
struct loca
|
||||||
{
|
{
|
||||||
|
friend struct glyf;
|
||||||
|
|
||||||
static const hb_tag_t tableTag = HB_OT_TAG_loca;
|
static const hb_tag_t tableTag = HB_OT_TAG_loca;
|
||||||
|
|
||||||
inline bool sanitize (hb_sanitize_context_t *c) const
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
||||||
|
@ -51,7 +53,7 @@ struct loca
|
||||||
return_trace (true);
|
return_trace (true);
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
protected:
|
||||||
union {
|
union {
|
||||||
USHORT shortsZ[VAR]; /* Location offset divided by 2. */
|
USHORT shortsZ[VAR]; /* Location offset divided by 2. */
|
||||||
ULONG longsZ[VAR]; /* Location offset. */
|
ULONG longsZ[VAR]; /* Location offset. */
|
||||||
|
@ -167,7 +169,7 @@ struct glyf
|
||||||
unsigned int glyf_len;
|
unsigned int glyf_len;
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
protected:
|
||||||
BYTE dataX[VAR]; /* Glyphs data. */
|
BYTE dataX[VAR]; /* Glyphs data. */
|
||||||
|
|
||||||
DEFINE_SIZE_ARRAY (0, dataX);
|
DEFINE_SIZE_ARRAY (0, dataX);
|
||||||
|
|
Loading…
Reference in New Issue