Home | History | Annotate | Download | only in hb-old

Lines Matching refs:markMetrics

79         HB_GlyphMetrics markMetrics;
80 item->font->klass->getGlyphMetrics(item->font, mark, &markMetrics);
133 p.x += attachmentRect.x - markMetrics.x;
134 p.y += (attachmentRect.y + attachmentRect.height) - markMetrics.y;
139 p.x += attachmentRect.x - markMetrics.x;
140 p.y += (attachmentRect.y + attachmentRect.height) - markMetrics.y;
142 p.x += (attachmentRect.width - markMetrics.width) / 2;
147 p.x += attachmentRect.x + attachmentRect.width - markMetrics.width - markMetrics.x;
148 p.y += attachmentRect.y + attachmentRect.height - markMetrics.y;
163 p.x += attachmentRect.x - markMetrics.x;
164 p.y += attachmentRect.y - markMetrics.y - markMetrics.height;
169 p.x += attachmentRect.x - markMetrics.x;
170 p.y += attachmentRect.y - markMetrics.y - markMetrics.height;
172 p.x += (attachmentRect.width - markMetrics.width) / 2;
177 p.x += attachmentRect.x + attachmentRect.width - markMetrics.x - markMetrics.width;
178 p.y += attachmentRect.y - markMetrics.y - markMetrics.height;
186 markMetrics.x += p.x;
187 markMetrics.y += p.y;
190 unitedAttachmentRect.x = HB_MIN(attachmentRect.x, markMetrics.x);
191 unitedAttachmentRect.y = HB_MIN(attachmentRect.y, markMetrics.y);
192 unitedAttachmentRect.width = HB_MAX(attachmentRect.x + attachmentRect.width, markMetrics.x + markMetrics.width) - unitedAttachmentRect.x;
193 unitedAttachmentRect.height = HB_MAX(attachmentRect.y + attachmentRect.height, markMetrics.y + markMetrics.height) - unitedAttachmentRect.y;