| 336 | } |
| 337 | |
| 338 | void BitmapCanvasContext::StrokeText(const std::string &text, float x, float y, float maxWidth) { |
| 339 | TraceCommand("StrokeText: " + text); |
| 340 | env_ = GetJniEnvSafe(); |
| 341 | F2SafeCallVoidMethod(env_, canvasContext_->obj(), strokeText_, jni::StringToJavaString(env_, text).obj(), x, y); |
| 342 | } |
| 343 | |
| 344 | std::string BitmapCanvasContext::TextAlign() const { return textAlign_; } |
| 345 |
nothing calls this directly
no test coverage detected