| 243 | } |
| 244 | |
| 245 | void WebCanvasContext::BeginPath() { |
| 246 | EM_ASM({ document.getElementById(UTF8ToString($0)).getContext('2d').beginPath(); }, canvasContext_.c_str()); |
| 247 | } |
| 248 | |
| 249 | void WebCanvasContext::MoveTo(float x, float y) { |
| 250 | EM_ASM({ document.getElementById(UTF8ToString($0)).getContext('2d').moveTo($1, $2); }, canvasContext_.c_str(), x, y); |
nothing calls this directly
no test coverage detected