Almar Klein
Almar Klein
Mmm, my first guess is that the websockets might not be cleaned up properly (sockets are file descriptors too). Is there anything specific about the update? Would you expect more...
I don't see any red flags from the info you provide. But I found this code: ```py import os import subprocess pid = os.getpid() out = subprocess.check_output(['lsof', '-wXFn', '+p', str(pid)],...
Not getting close to 1000 yet :P
I don't know what else to try, but am curious to what's going on. Please keep us posted!
Thanks for the extra info. Strange though, and interesting how its bound to a specific machine, but independent of the browser used ... Perhaps, something related to the firewall or...
This class hierarchy has come up a few times in other issues/prs. Let's collect ideas here and come up with a new hierarchy. IIRC there was some sentiment against the...
That sounds good! Looking forward to your proposal (no rush!).
> Serialization might also be something that could be done as a by-product of adding this functionality? To some degree, yes! Another thought: a "derived" material that wraps another material,...
We have `enable_wgpu_features`(https://docs.pygfx.org/stable/advanced_api.html). We can expose setting limits in a similar fashion, but this is not yet implemented.
> So the limit also applies to the canvas size since that's basically a texture too. Ah! Interesting!