mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
Remove a redundant method
This commit is contained in:
parent
81339256da
commit
40c77a1c5a
1 changed files with 0 additions and 11 deletions
|
@ -95,7 +95,6 @@ struct contour_point_t
|
|||
HB_ALWAYS_INLINE
|
||||
void translate (const contour_point_t &p) { x += p.x; y += p.y; }
|
||||
|
||||
|
||||
float x;
|
||||
float y;
|
||||
uint8_t flag;
|
||||
|
@ -104,16 +103,6 @@ struct contour_point_t
|
|||
|
||||
struct contour_point_vector_t : hb_vector_t<contour_point_t>
|
||||
{
|
||||
void extend (const hb_array_t<contour_point_t> &a)
|
||||
{
|
||||
unsigned int old_len = length;
|
||||
if (unlikely (!resize (old_len + a.length, false)))
|
||||
return;
|
||||
auto arrayZ = this->arrayZ + old_len;
|
||||
unsigned count = a.length;
|
||||
hb_memcpy (arrayZ, a.arrayZ, count * sizeof (arrayZ[0]));
|
||||
}
|
||||
|
||||
bool add_deltas (hb_array_t<const float> deltas_x,
|
||||
hb_array_t<const float> deltas_y,
|
||||
hb_array_t<const bool> indices)
|
||||
|
|
Loading…
Add table
Reference in a new issue