| 89 | } |
| 90 | |
| 91 | int main() |
| 92 | { |
| 93 | if (!emscripten_supports_offscreencanvas()) |
| 94 | { |
| 95 | printf("Current browser does not support OffscreenCanvas. Skipping this test.\n"); |
| 96 | #ifdef REPORT_RESULT |
| 97 | REPORT_RESULT(0); |
| 98 | #endif |
| 99 | return 0; |
| 100 | } |
| 101 | CreateThread(); |
| 102 | emscripten_async_call(PollThreadExit, 0, 100); |
| 103 | return 0; |
| 104 | } |
nothing calls this directly
no test coverage detected