| 279 | } |
| 280 | |
| 281 | void WebCanvasContext::ArcTo(float x1, float y1, float x2, float y2, float r) { |
| 282 | EM_ASM({ document.getElementById(UTF8ToString($0)).getContext('2d').arcTo($1, $2, $3, $4, $5); }, canvasContext_.c_str(), |
| 283 | x1, y1, x2, y2, r); |
| 284 | } |
| 285 | |
| 286 | void WebCanvasContext::Scale(float x, float y) { |
| 287 | EM_ASM({ document.getElementById(UTF8ToString($0)).getContext('2d').scale($1, $2); }, canvasContext_.c_str(), x, y); |
nothing calls this directly
no test coverage detected