Minor
Change-Id: I6a9f34e6da1344e718ef5c8dc136fac7244b0f47
This commit is contained in:
@@ -297,7 +297,7 @@ certain functionality.
|
||||
@li @c vcl.fonts - font-specific code
|
||||
@li @c vcl.gdi - the GDI part of VCL, devices, bitmaps, etc.
|
||||
@li @c vcl.gtk - Gtk+ 2/3 plugin
|
||||
@li @c vcl.harfbuzz.layout
|
||||
@li @c vcl.harfbuzz - HarfBuzz text layout
|
||||
@li @c vcl.headless - bitmap-based backend
|
||||
@li @c vcl.kde - KDE
|
||||
@li @c vcl.kde4 - KDE4
|
||||
|
@@ -148,7 +148,7 @@ static hb_blob_t *getFontTable(hb_face_t* /*face*/, hb_tag_t nTableTag, void* pU
|
||||
|
||||
ServerFont* pFont = (ServerFont*) pUserData;
|
||||
|
||||
SAL_INFO("vcl.harfbuzz.layout", "getFontTable(" << pFont << ", " << pTagName << ")");
|
||||
SAL_INFO("vcl.harfbuzz", "getFontTable(" << pFont << ", " << pTagName << ")");
|
||||
|
||||
sal_uLong nLength;
|
||||
const unsigned char* pBuffer = pFont->GetTable(pTagName, &nLength);
|
||||
@@ -221,7 +221,7 @@ static hb_position_t getGlyphKerningH(hb_font_t* /*font*/, void* pFontData,
|
||||
ServerFont* pFont = (ServerFont*) pFontData;
|
||||
FT_Face aFace = pFont->GetFtFace();
|
||||
|
||||
SAL_INFO("vcl.harfbuzz.layout", "getGlyphKerningH(" << pFont << ", " << nGlyphIndex1 << ", " << nGlyphIndex2 << ")");
|
||||
SAL_INFO("vcl.harfbuzz", "getGlyphKerningH(" << pFont << ", " << nGlyphIndex1 << ", " << nGlyphIndex2 << ")");
|
||||
|
||||
FT_Error error;
|
||||
FT_Vector kerning;
|
||||
@@ -252,7 +252,7 @@ static hb_bool_t getGlyphExtents(hb_font_t* /*font*/, void* pFontData,
|
||||
ServerFont* pFont = (ServerFont*) pFontData;
|
||||
FT_Face aFace = pFont->GetFtFace();
|
||||
|
||||
SAL_INFO("vcl.harfbuzz.layout", "getGlyphExtents(" << pFont << ", " << nGlyphIndex << ")");
|
||||
SAL_INFO("vcl.harfbuzz", "getGlyphExtents(" << pFont << ", " << nGlyphIndex << ")");
|
||||
|
||||
FT_Error error;
|
||||
error = FT_Load_Glyph(aFace, nGlyphIndex, FT_LOAD_DEFAULT);
|
||||
@@ -276,7 +276,7 @@ static hb_bool_t getGlyphContourPoint(hb_font_t* /*font*/, void* pFontData,
|
||||
ServerFont* pFont = (ServerFont*) pFontData;
|
||||
FT_Face aFace = pFont->GetFtFace();
|
||||
|
||||
SAL_INFO("vcl.harfbuzz.layout", "getGlyphContourPoint(" << pFont << ", " << nGlyphIndex << ", " << nPointIndex << ")");
|
||||
SAL_INFO("vcl.harfbuzz", "getGlyphContourPoint(" << pFont << ", " << nGlyphIndex << ", " << nPointIndex << ")");
|
||||
|
||||
FT_Error error;
|
||||
error = FT_Load_Glyph(aFace, nGlyphIndex, FT_LOAD_DEFAULT);
|
||||
@@ -350,7 +350,7 @@ bool HbLayoutEngine::layout(ServerFontLayout& rLayout, ImplLayoutArgs& rArgs)
|
||||
ServerFont& rFont = rLayout.GetServerFont();
|
||||
FT_Face aFtFace = rFont.GetFtFace();
|
||||
|
||||
SAL_INFO("vcl.harfbuzz.layout", "layout(" << this << ",rArgs=" << rArgs << ")");
|
||||
SAL_INFO("vcl.harfbuzz", "layout(" << this << ",rArgs=" << rArgs << ")");
|
||||
|
||||
hb_font_t *pHbFont = hb_font_create(mpHbFace);
|
||||
hb_font_set_funcs(pHbFont, getFontFuncs(), &rFont, NULL);
|
||||
|
Reference in New Issue
Block a user