Thomas Miller
Thomas Miller
show.textured_mesh is no longer working in colab. This is evident in the colab notebooks that display meshes. Essentially the code which generates the "built-in 3D viewer" is no longer compatible...
#### Description This change allows data channel middleware to register a callback for when a peer disconnects. #### Reference issue Fixes #572
## Summary When a peer drops the middleware is not notified. This information could be useful to some middlewares. ## Motivation A middleware should be free to do complex things...
In mp_buf_free in file lua_cmsgpack.c line 133 reads mp_realloc(buf->L, buf->b, buf->len, 0); when it should read mp_realloc(buf->L, buf->b, buf->len + buf->free, 0); realloc is passed the wrong osize. That can...