| 394 | } |
| 395 | |
| 396 | float BitmapCanvasContext::MeasureTextHeight(const std::string &text) { |
| 397 | TraceCommand("MeasureTextHeight: " + text); |
| 398 | env_ = GetJniEnvSafe(); |
| 399 | F2SafeCallFloatMethod(env_, canvasContext_->obj(), measureTextHeight_, jni::StringToJavaString(env_, text).obj()); |
| 400 | } |
| 401 | |
| 402 | void BitmapCanvasContext::Transform(float a, float b, float c, float d, float e, float f) { |
| 403 | TraceCommand("Transform " ); |
no test coverage detected