| 117 | } |
| 118 | #if defined(__EMSCRIPTEN__) |
| 119 | static EM_BOOL onWebTouchCallback(int eventType, const EmscriptenTouchEvent* touchEvent, void* /*userData*/) |
| 120 | { |
| 121 | if (_view) |
| 122 | _view->onWebTouchCallback(eventType, touchEvent); |
| 123 | return EM_FALSE; |
| 124 | } |
| 125 | |
| 126 | static void onWebClickCallback() |
| 127 | { |
nothing calls this directly
no test coverage detected