コード例 #1
0
ファイル: FTFont.cpp プロジェクト: ArchSirius/inf2990
FTBBox FTFontImpl::BBox(const wchar_t *string, const int len,
                        FTPoint position, FTPoint spacing)
{
    return BBoxI(string, len, position, spacing);
}
コード例 #2
0
ファイル: FTSimpleLayout.cpp プロジェクト: corngood/ftgl
FTBBox FTSimpleLayoutImpl::BBox(const wchar_t *string, const int len,
                                FTPoint position)
{
    return BBoxI(string, len, position);
}
コード例 #3
0
ファイル: FTFont.cpp プロジェクト: ArchSirius/inf2990
FTBBox FTFontImpl::BBox(const char *string, const int len,
                        FTPoint position, FTPoint spacing)
{
    /* The chars need to be unsigned because they are cast to int later */
    return BBoxI((const unsigned char *)string, len, position, spacing);
}