[color] Rename get_strike() to choose_strike()
This commit is contained in:
parent
0aa90271fd
commit
574579d376
|
@ -343,7 +343,7 @@ struct CBLC
|
|||
}
|
||||
|
||||
protected:
|
||||
const BitmapSizeTable &get_strike (hb_font_t *font,
|
||||
const BitmapSizeTable &choose_strike (hb_font_t *font,
|
||||
unsigned int *x_ppem, unsigned int *y_ppem) const
|
||||
{
|
||||
/* TODO: Make it possible to select strike. */
|
||||
|
@ -405,7 +405,7 @@ struct CBDT
|
|||
|
||||
unsigned int x_ppem, y_ppem;
|
||||
const void *base;
|
||||
const BitmapSizeTable &strike = this->cblc->get_strike (font, &x_ppem, &y_ppem);
|
||||
const BitmapSizeTable &strike = this->cblc->choose_strike (font, &x_ppem, &y_ppem);
|
||||
const IndexSubtableRecord *subtable_record = strike.find_table (glyph, cblc, &base);
|
||||
if (!subtable_record || !x_ppem || !y_ppem)
|
||||
return false;
|
||||
|
@ -457,7 +457,7 @@ struct CBDT
|
|||
|
||||
unsigned int x_ppem, y_ppem;
|
||||
const void *base;
|
||||
const BitmapSizeTable &strike = this->cblc->get_strike (font, &x_ppem, &y_ppem);
|
||||
const BitmapSizeTable &strike = this->cblc->choose_strike (font, &x_ppem, &y_ppem);
|
||||
const IndexSubtableRecord *subtable_record = strike.find_table (glyph, cblc, &base);
|
||||
if (!subtable_record || !x_ppem || !y_ppem)
|
||||
return hb_blob_get_empty ();
|
||||
|
|
|
@ -172,7 +172,7 @@ struct sbix
|
|||
int *y_offset,
|
||||
unsigned int *available_ppem) const
|
||||
{
|
||||
return get_strike (font).get_glyph_blob (glyph_id, sbix_blob,
|
||||
return choose_strike (font).get_glyph_blob (glyph_id, sbix_blob,
|
||||
HB_TAG ('p','n','g',' '),
|
||||
x_offset, y_offset,
|
||||
num_glyphs, available_ppem);
|
||||
|
@ -180,7 +180,7 @@ struct sbix
|
|||
|
||||
private:
|
||||
|
||||
inline const SBIXStrike &get_strike (hb_font_t *font) const
|
||||
inline const SBIXStrike &choose_strike (hb_font_t *font) const
|
||||
{
|
||||
if (unlikely (!table->strikes.len))
|
||||
return Null(SBIXStrike);
|
||||
|
|
Loading…
Reference in New Issue