MCPcopy Create free account
hub / github.com/HumbleUI/Skija / getUTF32Glyphs

Method getUTF32Glyphs

shared/java/Font.java:418–425  ·  view source on GitHub ↗

Given an array of UTF32 character codes, return their corresponding glyph IDs. @return the corresponding glyph IDs for each character.

(int[] uni)

Source from the content-addressed store, hash-verified

416 * @return the corresponding glyph IDs for each character.
417 */
418 public short[] getUTF32Glyphs(int[] uni) {
419 try {
420 Stats.onNativeCall();
421 return _nGetUTF32Glyphs(_ptr, uni);
422 } finally {
423 ReferenceUtil.reachabilityFence(this);
424 }
425 }
426
427 /**
428 * @return the glyph that corresponds to the specified unicode code-point (in UTF32 encoding). If the unichar is not supported, returns 0

Callers 1

getStringGlyphsMethod · 0.95

Calls 3

onNativeCallMethod · 0.95
_nGetUTF32GlyphsMethod · 0.95
reachabilityFenceMethod · 0.95

Tested by

no test coverage detected