| 491 | } |
| 492 | |
| 493 | void BitmapCanvasContext::ArcTo(float x1, float y1, float x2, float y2, float r) { |
| 494 | TraceCommand("ArcTo"); |
| 495 | env_ = GetJniEnvSafe(); |
| 496 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), arcTo_, x1, y1, x2, y2, r); |
| 497 | } |
| 498 | |
| 499 | void BitmapCanvasContext::Scale(float scale_width, float scale_height) { |
| 500 | TraceCommand("Scale"); |
nothing calls this directly
no test coverage detected