| 454 | } |
| 455 | |
| 456 | void BitmapCanvasContext::ClosePath() { |
| 457 | TraceCommand("ClosePath"); |
| 458 | env_ = GetJniEnvSafe(); |
| 459 | F2SafeCallVoidMethodNoArg(env_, canvasContext_->obj(), closePath_); |
| 460 | } |
| 461 | |
| 462 | void BitmapCanvasContext::LineTo(float x, float y) { |
| 463 | TraceCommand("LienTo x: " + std::to_string(x) + ", " + std::to_string(y)); |
no test coverage detected