(Matrix33 matrix, SamplingMode mode, ImageFilter input)
| 141 | } |
| 142 | |
| 143 | public static ImageFilter makeMatrixTransform(Matrix33 matrix, SamplingMode mode, ImageFilter input) { |
| 144 | try { |
| 145 | Stats.onNativeCall(); |
| 146 | return new ImageFilter(_nMakeMatrixTransform(matrix.getMat(), mode._pack(), Native.getPtr(input))); |
| 147 | } finally { |
| 148 | Reference.reachabilityFence(input); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | public static ImageFilter makeMerge(ImageFilter[] filters, IRect crop) { |
| 153 | try { |
nothing calls this directly
no test coverage detected