| 485 | } |
| 486 | |
| 487 | void BitmapCanvasContext::Arc(float x, float y, float r, float sAngle, float eAngle, bool antiClockwise) { |
| 488 | TraceCommand("Arc"); |
| 489 | env_ = GetJniEnvSafe(); |
| 490 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), arc_, x, y, r, sAngle, eAngle, antiClockwise); |
| 491 | } |
| 492 | |
| 493 | void BitmapCanvasContext::ArcTo(float x1, float y1, float x2, float y2, float r) { |
| 494 | TraceCommand("ArcTo"); |
no test coverage detected