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