| 442 | } |
| 443 | |
| 444 | void BitmapCanvasContext::BeginPath() { |
| 445 | TraceCommand("BeginPath"); |
| 446 | env_ = GetJniEnvSafe(); |
| 447 | F2SafeCallVoidMethodNoArg(env_, canvasContext_->obj(), beginPath_); |
| 448 | } |
| 449 | |
| 450 | void BitmapCanvasContext::MoveTo(float x, float y) { |
| 451 | TraceCommand("MoveTo x: " + std::to_string(x) + ", " + std::to_string(y)); |
no test coverage detected