Home
last modified time | relevance | path

Searched refs:glyphBounds (Results 1 – 25 of 60) sorted by relevance

123

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/win/
H A DUniscribeController.cpp346 FloatRect glyphBounds = fontData->boundsForGlyph(glyph); in shapeAndPlaceItem() local
347 glyphBounds.move(m_glyphOrigin.x(), m_glyphOrigin.y()); in shapeAndPlaceItem()
348 m_minGlyphBoundingBoxX = min(m_minGlyphBoundingBoxX, glyphBounds.x()); in shapeAndPlaceItem()
349 m_maxGlyphBoundingBoxX = max(m_maxGlyphBoundingBoxX, glyphBounds.maxX()); in shapeAndPlaceItem()
350 m_minGlyphBoundingBoxY = min(m_minGlyphBoundingBoxY, glyphBounds.y()); in shapeAndPlaceItem()
351 m_maxGlyphBoundingBoxY = max(m_maxGlyphBoundingBoxY, glyphBounds.maxY()); in shapeAndPlaceItem()
/dports/science/cdk/cdk-cdk-2.3/display/renderbasic/src/main/java/org/openscience/cdk/renderer/generators/standard/
H A DTextOutline.java197 final Rectangle2D glyphBounds = transformedBounds(glyph); in getGlyphCenter() local
199 return new Point2D.Double(glyphBounds.getCenterX(), glyphBounds.getCenterY()); in getGlyphCenter()
/dports/graphics/ftgl/ftgl-2.4.0/src/FTLayout/
H A DFTSimpleLayout.cpp208 FTBBox glyphBounds; in WrapTextI() local
224 glyphBounds = currentFont->BBox(itr.getBufferFromHere(), 1); in WrapTextI()
225 glyphWidth = glyphBounds.Upper().Xf() - glyphBounds.Lower().Xf(); in WrapTextI()
/dports/converters/wkhtmltopdf/qt-5db36ec/src/openvg/
H A Dqvg_symbian.cpp341 TRect glyphBounds; in cacheGlyphs() local
342 metrics.GetHorizBounds(glyphBounds); in cacheGlyphs()
346 origin[0] = -glyphBounds.iTl.iX; in cacheGlyphs()
347 origin[1] = glyphBounds.iBr.iY; in cacheGlyphs()
/dports/games/critterding/critterding-beta12/src/utils/ftgl/FTLayout/
H A DFTSimpleLayout.cpp207 FTBBox glyphBounds; in WrapTextI() local
223 glyphBounds = currentFont->BBox(itr.getBufferFromHere(), 1); in WrapTextI()
224 glyphWidth = glyphBounds.Upper().Xf() - glyphBounds.Lower().Xf(); in WrapTextI()
/dports/devel/upp/upp/bazaar/FTGL/src/FTLayout/
H A DFTSimpleLayout.cpp207 FTBBox glyphBounds; in WrapTextI() local
223 glyphBounds = currentFont->BBox(itr.getBufferFromHere(), 1); in WrapTextI()
224 glyphWidth = glyphBounds.Upper().Xf() - glyphBounds.Lower().Xf(); in WrapTextI()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skplaintexteditor/src/
H A Dshape.cpp275 result.glyphBounds.resize(textByteLen); in Shape()
276 for (SkRect& c : result.glyphBounds) { in Shape()
279 runHandler.setRunCallback(set_character_bounds, result.glyphBounds.data()); in Shape()
290 result.glyphBounds.push_back(runHandler.finalRect(font)); in Shape()
H A Dshape.h15 std::vector<SkRect> glyphBounds; member
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skplaintexteditor/src/
H A Dshape.cpp275 result.glyphBounds.resize(textByteLen); in Shape()
276 for (SkRect& c : result.glyphBounds) { in Shape()
279 runHandler.setRunCallback(set_character_bounds, result.glyphBounds.data()); in Shape()
290 result.glyphBounds.push_back(runHandler.finalRect(font)); in Shape()
H A Dshape.h15 std::vector<SkRect> glyphBounds; member
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/platform/graphics/mac/
H A DComplexTextController.cpp515 FloatRect glyphBounds = fontData->boundsForGlyph(glyph); in adjustGlyphsAndAdvances() local
516 glyphBounds.move(glyphOrigin.x, glyphOrigin.y); in adjustGlyphsAndAdvances()
517 m_minGlyphBoundingBoxX = min(m_minGlyphBoundingBoxX, glyphBounds.x()); in adjustGlyphsAndAdvances()
518 m_maxGlyphBoundingBoxX = max(m_maxGlyphBoundingBoxX, glyphBounds.maxX()); in adjustGlyphsAndAdvances()
519 m_minGlyphBoundingBoxY = min(m_minGlyphBoundingBoxY, glyphBounds.y()); in adjustGlyphsAndAdvances()
520 m_maxGlyphBoundingBoxY = max(m_maxGlyphBoundingBoxY, glyphBounds.maxY()); in adjustGlyphsAndAdvances()
/dports/games/openra/OpenRA-release-20200503/OpenRA.Game/Graphics/
H A DSpriteFont.cs365 var glyphBounds = glyph.Sprite.Bounds; in CreateContrastGlyph()
385 if (ii < 0 || ii >= glyphBounds.Width || jj < 0 || jj >= glyphBounds.Height) in CreateContrastGlyph()
389 …m[wj * elemStride + wi] * glyphData[glyphStride * (jj + glyphBounds.Top) + 4 * (ii + glyphBounds.L… in CreateContrastGlyph()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/text/
H A DSkottieShaper.cpp31 SkAutoSTArray<16, SkRect> glyphBounds; in ComputeBlobBounds() local
36 glyphBounds.reset(SkToInt(it.glyphCount())); in ComputeBlobBounds()
37 it.font().getBounds(it.glyphs(), it.glyphCount(), glyphBounds.get(), nullptr); in ComputeBlobBounds()
41 bounds.join(glyphBounds[i].makeOffset(it.pos()[i * 2 ], in ComputeBlobBounds()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/text/
H A DSkottieShaper.cpp31 SkAutoSTArray<16, SkRect> glyphBounds; in ComputeBlobBounds() local
36 glyphBounds.reset(SkToInt(it.glyphCount())); in ComputeBlobBounds()
37 it.font().getBounds(it.glyphs(), it.glyphCount(), glyphBounds.get(), nullptr); in ComputeBlobBounds()
41 bounds.join(glyphBounds[i].makeOffset(it.pos()[i * 2 ], in ComputeBlobBounds()
/dports/www/firefox-esr/firefox-91.8.0/gfx/skia/skia/src/pdf/
H A DSkPDFDevice.cpp721 SkRect glyphBounds = SkMatrix::MakeScale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
722 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
723 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
724 return glyphBounds; in get_glyph_bounds_device_space()
917 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
920 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
921 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
925 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/skia/skia/src/pdf/
H A DSkPDFDevice.cpp721 SkRect glyphBounds = SkMatrix::MakeScale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
722 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
723 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
724 return glyphBounds; in get_glyph_bounds_device_space()
917 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
920 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
921 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
925 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp733 SkRect glyphBounds = SkMatrix::Scale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
734 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
735 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
736 return glyphBounds; in get_glyph_bounds_device_space()
916 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
919 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
920 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
924 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/src/pdf/
H A DSkPDFDevice.cpp745 SkRect glyphBounds = SkMatrix::MakeScale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
746 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
747 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
748 return glyphBounds; in get_glyph_bounds_device_space()
928 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
931 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
932 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
936 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/www/firefox/firefox-99.0/gfx/skia/skia/src/pdf/
H A DSkPDFDevice.cpp721 SkRect glyphBounds = SkMatrix::MakeScale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
722 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
723 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
724 return glyphBounds; in get_glyph_bounds_device_space()
917 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
920 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
921 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
925 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/mail/thunderbird/thunderbird-91.8.0/gfx/skia/skia/src/pdf/
H A DSkPDFDevice.cpp721 SkRect glyphBounds = SkMatrix::MakeScale(xScale, yScale).mapRect(glyph->rect()); in get_glyph_bounds_device_space() local
722 glyphBounds.offset(xy); in get_glyph_bounds_device_space()
723 ctm.mapRect(&glyphBounds); // now in dev space. in get_glyph_bounds_device_space()
724 return glyphBounds; in get_glyph_bounds_device_space()
917 SkRect glyphBounds = get_glyph_bounds_device_space( in internalDrawGlyphRun() local
920 if (glyphBounds.isEmpty()) { in internalDrawGlyphRun()
921 if (!contains(clipStackBounds, {glyphBounds.x(), glyphBounds.y()})) { in internalDrawGlyphRun()
925 if (!clipStackBounds.intersects(glyphBounds)) { in internalDrawGlyphRun()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/modules/skottie/src/
H A DSkottieTest.cpp402 SkAutoSTArray<16, SkRect> glyphBounds; in ComputeBlobBounds() local
407 glyphBounds.reset(SkToInt(it.glyphCount())); in ComputeBlobBounds()
408 it.font().getBounds(it.glyphs(), it.glyphCount(), glyphBounds.get(), nullptr); in ComputeBlobBounds()
412 bounds.join(glyphBounds[i].makeOffset(it.pos()[i * 2 ], in ComputeBlobBounds()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/modules/skottie/src/
H A DSkottieTest.cpp409 SkAutoSTArray<16, SkRect> glyphBounds; in ComputeBlobBounds() local
414 glyphBounds.reset(SkToInt(it.glyphCount())); in ComputeBlobBounds()
415 it.font().getBounds(it.glyphs(), it.glyphCount(), glyphBounds.get(), nullptr); in ComputeBlobBounds()
419 bounds.join(glyphBounds[i].makeOffset(it.pos()[i * 2 ], in ComputeBlobBounds()
/dports/science/wxmacmolplt/wxmacmolplt-7.7-43-g9a46f7a/src/ming-src/blocks/
H A Dtext.c791 SWFRect glyphBounds;
797 glyphBounds = SWFFont_getGlyphBounds(font,font_glyphcode);
798 SWFRect_getBounds(glyphBounds, &minX, &maxX, &minY, &maxY);
/dports/graphics/ming/libming-ming-0_4_8/src/blocks/
H A Dtext.c786 SWFRect glyphBounds; in SWFText_resolveCodes() local
791 glyphBounds = SWFFont_getGlyphBounds(font,font_glyphcode); in SWFText_resolveCodes()
792 SWFRect_getBounds(glyphBounds, &minX, &maxX, &minY, &maxY); in SWFText_resolveCodes()
/dports/graphics/p5-ming/libming-ming-0_4_8/src/blocks/
H A Dtext.c786 SWFRect glyphBounds; in SWFText_resolveCodes() local
791 glyphBounds = SWFFont_getGlyphBounds(font,font_glyphcode); in SWFText_resolveCodes()
792 SWFRect_getBounds(glyphBounds, &minX, &maxX, &minY, &maxY); in SWFText_resolveCodes()

123