| 497 | } |
| 498 | |
| 499 | void BitmapCanvasContext::Scale(float scale_width, float scale_height) { |
| 500 | TraceCommand("Scale"); |
| 501 | env_ = GetJniEnvSafe(); |
| 502 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), scale_, scale_width); |
| 503 | } |
| 504 | |
| 505 | void BitmapCanvasContext::Rotate(float angle) { |
| 506 | TraceCommand("Rotate"); |
no test coverage detected