Re: GlDrawableHelper allocates unecessary Iterator
Posted by
Michael Bien on
Jun 21, 2010; 11:04pm
URL: https://forum.jogamp.org/GlDrawableHelper-allocates-unecessary-Iterator-tp912785p912885.html
if you think you can optimize something just fork the repository on
github and do your work.
we can take a look at it later and integrate it if it makes sense (e.g.
does not overcomplicate things + does not break something).
contributions are always welcome.
but a single iterator per frame is usually not the problem.
regards,
michael
On 06/22/2010 12:11 AM, Taif [via jogamp] wrote:
I've recently fallen love with the java allocation
instrumenter
http://code.google.com/p/java-allocation-instrumenter/
Garbage collection can be a pain when you're trying to create visuals
that run smooth as milk. The solution? Never allocate anything while
the "visuals" are running (front load all the allocation).
However, I'm being bugged by the fact that GLCanvas.display calls
com.jogamp.opengl.impl.GlDrawableHelper's display method, which creates
an AbstractIterator just to iterate an ArrayList.
Of course, I'd fix this myself, but then I wouldn't have the nice
signed-applet-certificates that you guys offer.
Are all those iterators really necessary? Perhaps its some really
subtle concurrency detail?
Tl;Dr? com.jogamp.opengl.impl.GlDrawableHelper allocates an Iterator
every frame - and I'm trying to reduce the allocation footprint of my
opengl app.