| 418 | } |
| 419 | |
| 420 | void BitmapCanvasContext::ClearRect(float x, float y, float width, float height) { |
| 421 | TraceCommand("ClearRect " ); |
| 422 | env_ = GetJniEnvSafe(); |
| 423 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), clearRect_, x, y, width, height); |
| 424 | } |
| 425 | |
| 426 | void BitmapCanvasContext::FillRect(float x, float y, float width, float height) { |
| 427 | TraceCommand("FillRect " ); |
no test coverage detected