diff options
-rw-r--r-- | vcl/win/gdi/winlayout.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx index 3aed82d2e6ac..3f051d706053 100644 --- a/vcl/win/gdi/winlayout.cxx +++ b/vcl/win/gdi/winlayout.cxx @@ -3326,14 +3326,6 @@ bool UniscribeLayout::IsKashidaPosValid ( int nCharPos ) const return true; } -#if ENABLE_GRAPHITE - -sal_GlyphId GraphiteLayoutWinImpl::getKashidaGlyph(int & rWidth) -{ - rWidth = mrFont.GetMinKashidaWidth(); - return mrFont.GetMinKashidaGlyph(); -} - HINSTANCE D2DWriteTextOutRenderer::mmD2d1 = nullptr, D2DWriteTextOutRenderer::mmDWrite = nullptr; D2DWriteTextOutRenderer::pD2D1CreateFactory_t D2DWriteTextOutRenderer::D2D1CreateFactory = nullptr; @@ -3708,6 +3700,14 @@ bool D2DWriteTextOutRenderer::GetDWriteInkBox(SalLayout const &rLayout, Rectangl return true; } +#if ENABLE_GRAPHITE + +sal_GlyphId GraphiteLayoutWinImpl::getKashidaGlyph(int & rWidth) +{ + rWidth = mrFont.GetMinKashidaWidth(); + return mrFont.GetMinKashidaGlyph(); +} + float gr_fontAdvance(const void* appFontHandle, gr_uint16 glyphId) { HDC hDC = static_cast<HDC>(const_cast<void*>(appFontHandle)); |