summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2016-03-14 19:58:51 +0200
committerTor Lillqvist <tml@collabora.com>2016-03-14 19:58:51 +0200
commit9082f204a91324523287dabe9e288c1fa0d43aa1 (patch)
tree509910bdeb4aea66c595e066d274e63174d76b2d
parentc62afab9d4138583eb22afe46608b323f902f095 (diff)
Bin leftover #if 0 snippet
Change-Id: I848a5dca6d18c3df57f563bb137efaed2e000461
-rw-r--r--vcl/win/gdi/winlayout.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/vcl/win/gdi/winlayout.cxx b/vcl/win/gdi/winlayout.cxx
index c8856dc400dc..ffa0b3fd258e 100644
--- a/vcl/win/gdi/winlayout.cxx
+++ b/vcl/win/gdi/winlayout.cxx
@@ -3752,27 +3752,6 @@ bool D2DWriteTextOutRenderer::operator ()(WinLayout const &rLayout, HDC hDC,
if (!BindFont(hDC))
return false;
-#if 0
- // Gather glyph positioning data.
- std::vector<uint16_t> indices;
- std::vector<float> advances;
- std::vector<Point> offsets;
- sal_GlyphId nLGlyph;
- DeviceCoordinate nAdv;
- while (rLayout.GetNextGlyphs(1, &nLGlyph, *pPos, *pGetNextGlypInfo, &nAdv) == 1)
- {
- indices.push_back(nLGlyph);
- advances.push_back(nAdv);
- offsets.push_back(Point(0,pPos->Y()));
- }
-
- // Find the bounds
- DrawGlyphs(rLayout.DrawBase(), indices.data(), indices.data()+indices.size(), advances.data(), offsets.data());
-
- ReleaseFont();
-
- return false;
-#else
Rectangle bounds;
bool succeeded = GetDWriteInkBox(*mpFontFace, rLayout, mlfEmHeight, bounds);
if (pRectToErase)
@@ -3834,7 +3813,6 @@ bool D2DWriteTextOutRenderer::operator ()(WinLayout const &rLayout, HDC hDC,
CreateRenderTarget();
return (succeeded && nGlyphs >= 1 && pRectToErase);
-#endif
}
bool D2DWriteTextOutRenderer::BindFont(HDC hDC)