(Bitmap image, Point pivot, float whirl, float pinch, float radius)
| 47 | }; |
| 48 | |
| 49 | public static void applyWhirlPinch(Bitmap image, Point pivot, float whirl, float pinch, float radius) |
| 50 | { |
| 51 | if(image == null || image.getConfig() != Bitmap.Config.ARGB_8888) |
| 52 | throw new IllegalArgumentException("bad image"); // 0xBAD13A9E |
| 53 | |
| 54 | nativeApplyWhirlPinch(image, pivot, whirl, pinch, radius); |
| 55 | } |
| 56 | |
| 57 | public static void applyWhirlPinch(Bitmap image, float whirl, float pinch, float radius) |
| 58 | { |
nothing calls this directly
no test coverage detected