Given an array of UTF32 character codes, return their corresponding glyph IDs. @return the corresponding glyph IDs for each character.
(int[] uni)
| 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 |
no test coverage detected