| 430 | } |
| 431 | |
| 432 | void BitmapCanvasContext::Fill(const std::string &fillRule) { |
| 433 | TraceCommand("Fill"); |
| 434 | env_ = GetJniEnvSafe(); |
| 435 | F2SafeCallVoidMethodNoArg(env_, canvasContext_->obj(), fill_); |
| 436 | } |
| 437 | |
| 438 | void BitmapCanvasContext::Stroke() { |
| 439 | TraceCommand("Stroke"); |
no test coverage detected