HomeSort by: relevance | last modified time | path
    Searched defs:ystr (Results 1 - 2 of 2) sorted by relevancy

  /xsrc/external/mit/freetype/dist/src/base/
ftsynth.c 94 FT_Pos xstr, ystr; local
110 ystr = xstr;
113 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr );
121 ystr &= ~63;
129 if ( ( ystr >> 6 ) > FT_INT_MAX || ( ystr >> 6 ) < FT_INT_MIN )
132 FT_TRACE1(( "too strong emboldening parameter ystr=%ld\n", ystr ));
139 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
148 slot->advance.y += ystr;
    [all...]
ftbitmap.c 316 FT_Int xstr, ystr; local
330 ystr = (FT_Int)FT_PIX_ROUND( yStrength ) >> 6;
332 if ( xstr == 0 && ystr == 0 )
334 else if ( xstr < 0 || ystr < 0 )
366 ystr *= 3;
375 (FT_UInt)xstr, (FT_UInt)ystr );
382 p = bitmap->buffer + pitch * ystr;
444 * Make the above `ystr' rows or'ed with it.
446 for ( x = 1; x <= ystr; x++ )
460 bitmap->rows += (FT_UInt)ystr;
    [all...]

Completed in 20 milliseconds