Home | History | Annotate | Download | only in smooth

Lines Matching defs:cbox

88                       FT_BBox*      cbox )
90 FT_ZERO( cbox );
93 FT_Outline_Get_CBox( &slot->outline, cbox );
109 FT_BBox cbox;
148 FT_Outline_Get_CBox( outline, &cbox );
150 cbox.xMin = FT_PIX_FLOOR( cbox.xMin + x_shift );
151 cbox.yMin = FT_PIX_FLOOR( cbox.yMin + y_shift );
152 cbox.xMax = FT_PIX_CEIL( cbox.xMax + x_shift );
153 cbox.yMax = FT_PIX_CEIL( cbox.yMax + y_shift );
155 x_shift -= cbox.xMin;
156 y_shift -= cbox.yMin;
158 x_left = cbox.xMin >> 6;
159 y_top = cbox.yMax >> 6;
161 width = (FT_ULong)( cbox.xMax - cbox.xMin ) >> 6;
162 height = (FT_ULong)( cbox.yMax - cbox.yMin ) >> 6;