(Pixmap dstPixmap, SamplingMode samplingMode)
| 210 | } |
| 211 | |
| 212 | public boolean scalePixels(Pixmap dstPixmap, SamplingMode samplingMode) { |
| 213 | Stats.onNativeCall(); |
| 214 | try { |
| 215 | return _nScalePixels(_ptr, Native.getPtr(dstPixmap), samplingMode._pack()); |
| 216 | } finally { |
| 217 | Reference.reachabilityFence(this); |
| 218 | Reference.reachabilityFence(dstPixmap); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | public boolean erase(int color) { |
| 223 | Stats.onNativeCall(); |
nothing calls this directly
no test coverage detected