OGRECave / ogre-meshviewer

Viewer for .mesh and .scene files as consumed by OGRE as well as any format supported by assimp
MIT License
57 stars 13 forks source link

Memory leak #6

Closed fegorsch closed 3 years ago

fegorsch commented 4 years ago

After being left open for the weekend the meshviewer needed about 7.5 GB memory. I only had a simple box geometry loaded. There's probably a small memory leak somewhere.

paroj commented 4 years ago

might be in the SWIG generated glue code. Please run it through Valgrind to find out more.

paroj commented 3 years ago

running ASAN on the current master of everything does not show anything suspicious.

there are some leaks of singleton objects, which is ok. howver, it might be even python itself leaking - which sums up if you have callbacks at 60fps: https://bugs.python.org/issue35774

closing as incomplete as there is nothing that I can do about it