Hello, I'm using the latest develop branch of pyqtgraph with PyQt5. It seem 
GLVolumeItem.setData function leaks memory.

the simplest code is add a QTimer to examples/GLVolumeItem.py:

....
v = gl.GLVolumeItem(d2)
v.translate(-50, -50, -100)
w.addItem(v)

ax = gl.GLAxisItem()
w.addItem(ax)

from pyqtgraph.Qt import QtCore, QtGui
timer = QtCore.QTimer()
def update():
    v.setData(d2)
timer.timeout.connect(update)
timer.start(30)

Am I using it wrong? please help, thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"pyqtgraph" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pyqtgraph/70be6930-6c13-43ef-84cc-be4c9aff7c07%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to