[COLR] Rename a variable

This commit is contained in:
Behdad Esfahbod 2023-01-18 21:16:38 -07:00
parent 1d58c8fb0e
commit 0b32cf9023
1 changed files with 7 additions and 7 deletions

View File

@ -67,7 +67,7 @@ public:
hb_paint_funcs_t *funcs; hb_paint_funcs_t *funcs;
void *data; void *data;
hb_font_t *font; hb_font_t *font;
unsigned int palette; unsigned int palette_index;
hb_color_t foreground; hb_color_t foreground;
VarStoreInstancer &instancer; VarStoreInstancer &instancer;
int depth_left = HB_MAX_NESTING_LEVEL; int depth_left = HB_MAX_NESTING_LEVEL;
@ -84,7 +84,7 @@ public:
funcs (funcs_), funcs (funcs_),
data (data_), data (data_),
font (font_), font (font_),
palette (palette_), palette_index (palette_),
foreground (foreground_), foreground (foreground_),
instancer (instancer_) instancer (instancer_)
{ } { }
@ -97,12 +97,12 @@ public:
if (color_index != 0xffff) if (color_index != 0xffff)
{ {
if (palette != HB_PAINT_PALETTE_INDEX_CUSTOM) if (palette_index != HB_PAINT_PALETTE_INDEX_CUSTOM)
{ {
unsigned int clen = 1; unsigned int clen = 1;
hb_face_t *face = hb_font_get_face (font); hb_face_t *face = hb_font_get_face (font);
hb_ot_color_palette_get_colors (face, palette, color_index, &clen, &color); hb_ot_color_palette_get_colors (face, palette_index, color_index, &clen, &color);
} }
else else
color = funcs->custom_palette_color (data, color_index); color = funcs->custom_palette_color (data, color_index);
@ -2039,12 +2039,12 @@ struct COLR
} }
bool bool
paint_glyph (hb_font_t *font, hb_codepoint_t glyph, hb_paint_funcs_t *funcs, void *data, unsigned int palette, hb_color_t foreground, bool clip = true) const paint_glyph (hb_font_t *font, hb_codepoint_t glyph, hb_paint_funcs_t *funcs, void *data, unsigned int palette_index, hb_color_t foreground, bool clip = true) const
{ {
VarStoreInstancer instancer (this+varStore, VarStoreInstancer instancer (this+varStore,
this+varIdxMap, this+varIdxMap,
hb_array (font->coords, font->num_coords)); hb_array (font->coords, font->num_coords));
hb_paint_context_t c (this, funcs, data, font, palette, foreground, instancer); hb_paint_context_t c (this, funcs, data, font, palette_index, foreground, instancer);
if (version == 1) if (version == 1)
{ {
@ -2077,7 +2077,7 @@ struct COLR
paint_glyph (font, glyph, paint_glyph (font, glyph,
extents_funcs, &extents_data, extents_funcs, &extents_data,
palette, foreground, palette_index, foreground,
false); false);
hb_extents_t extents = extents_data.get_extents (); hb_extents_t extents = extents_data.get_extents ();