| 406 | } |
| 407 | |
| 408 | void BitmapCanvasContext::SetTransform(float a, float b, float c, float d, float e, float f) { |
| 409 | TraceCommand("SetTransform " ); |
| 410 | env_ = GetJniEnvSafe(); |
| 411 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), setTransform_, a, b, c, d, e, f); |
| 412 | } |
| 413 | |
| 414 | void BitmapCanvasContext::Rect(float x, float y, float width, float height) { |
| 415 | TraceCommand("Rect " ); |
no test coverage detected