Home
last modified time | relevance | path

Searched refs:getGlyphWidths (Results 1 – 6 of 6) sorted by relevance

/external/skia/modules/canvaskit/
Dfont.js73 CanvasKit.Font.prototype.getGlyphWidths = function(glyphs, paint, optionalOutputArray) { method in CanvasKit.Font
157 var widths = font.getGlyphWidths(ids);
Dexterns.js360 getGlyphWidths: function() {},
DCHANGELOG.md47 Paragraph APIs or `Font.getGlyphWidths` instead (the latter does no shaping).
48 - `Font.getWidths`, which had been previously deprecated. Clients should use `Font.getGlyphWidths`.
194 - `Font.getWidths` in favor of `Font.getGlyphIDs` and `Font.getGlyphWidths`.
289 - `SkFont.getGlyphIDs`, `SkFont.getGlyphBounds`, `SkFont.getGlyphWidths` for turning code points
/external/skia/modules/canvaskit/tests/
Dfont.spec.js154 const widths = font.getGlyphWidths(ids, bluePaint);
295 const widths = font.getGlyphWidths(ids);
/external/skia/modules/canvaskit/npm_build/types/
Dcanvaskit-wasm-tests.ts330 const widths = font.getGlyphWidths(glyphMalloc, paint);
331 font.getGlyphWidths(someGlyphs, null, widths);
Dindex.d.ts1659 getGlyphWidths(glyphs: InputGlyphIDArray, paint?: Paint | null, method