| 479 | } |
| 480 | |
| 481 | void BitmapCanvasContext::BezierCurveTo(float cp1x, float cp1y, float cp2x, float cp2y, float x, float y) { |
| 482 | TraceCommand("BezierCurveTo"); |
| 483 | env_ = GetJniEnvSafe(); |
| 484 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), bezierCurveTo_, cp1x, cp1y, cp2x, cp2y, x, y); |
| 485 | } |
| 486 | |
| 487 | void BitmapCanvasContext::Arc(float x, float y, float r, float sAngle, float eAngle, bool antiClockwise) { |
| 488 | TraceCommand("Arc"); |
no test coverage detected