| 8 | |
| 9 | EMSCRIPTEN_KEEPALIVE |
| 10 | extern "C" uint8_t* create_buffer(int width, int height) |
| 11 | { |
| 12 | return (uint8_t*)malloc(width * height * 4); |
| 13 | } |
| 14 | |
| 15 | EMSCRIPTEN_KEEPALIVE |
| 16 | extern "C" void destroy_buffer(uint8_t* p) |
nothing calls this directly
no outgoing calls
no test coverage detected