(Shader s)
| 16 | } |
| 17 | |
| 18 | public static MaskFilter makeShader(Shader s) { |
| 19 | try { |
| 20 | Stats.onNativeCall(); |
| 21 | return new MaskFilter(_nMakeShader(Native.getPtr(s))); |
| 22 | } finally { |
| 23 | ReferenceUtil.reachabilityFence(s); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | public static MaskFilter makeTable(byte[] table) { |
| 28 | Stats.onNativeCall(); |
no test coverage detected