()
| 93 | } |
| 94 | |
| 95 | @Nullable |
| 96 | public TextBlob getTextBlob() { |
| 97 | Stats.onNativeCall(); |
| 98 | try { |
| 99 | long res = _nGetTextBlob(_ptr); |
| 100 | return res == 0 ? null : new TextBlob(res); |
| 101 | } finally { |
| 102 | ReferenceUtil.reachabilityFence(this); |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | public short[] getGlyphs() { |
| 107 | Stats.onNativeCall(); |
no test coverage detected