(Pixmap dstPixmap, SamplingMode samplingMode)
| 231 | } |
| 232 | |
| 233 | public boolean scalePixels(Pixmap dstPixmap, SamplingMode samplingMode) { |
| 234 | Stats.onNativeCall(); |
| 235 | try { |
| 236 | return _nScalePixels(_ptr, Native.getPtr(dstPixmap), samplingMode._pack()); |
| 237 | } finally { |
| 238 | ReferenceUtil.reachabilityFence(this); |
| 239 | ReferenceUtil.reachabilityFence(dstPixmap); |
| 240 | } |
| 241 | } |
| 242 | |
| 243 | public boolean erase(int color) { |
| 244 | Stats.onNativeCall(); |
nothing calls this directly
no test coverage detected