Home | History | Annotate | Download | only in test

Lines Matching defs:bbox

74   FT_BBox bbox;
75 FT_Outline_Get_CBox(outline, &bbox);
77 bbox.xMin &= ~63;
78 bbox.yMin &= ~63;
79 bbox.xMax = (bbox.xMax + 63) & ~63;
80 bbox.yMax = (bbox.yMax + 63) & ~63;
81 FT_Outline_Translate(outline, -bbox.xMin, -bbox.yMin);
83 const int w = (bbox.xMax - bbox.xMin) >> 6;
84 const int h = (bbox.yMax - bbox.yMin) >> 6;