Search found 3 matches

by richy88
Wed Mar 01, 2017 8:11 am
Forum: Support and Development
Topic: image sequence - memory performance
Replies: 5
Views: 3089

Re: image sequence - memory performance

Sorry, not an option also. But I've found a solution. :)
Just added the following in the last line of love.update() function.

Code: Select all

collectgarbage()
by richy88
Wed Mar 01, 2017 7:14 am
Forum: Support and Development
Topic: image sequence - memory performance
Replies: 5
Views: 3089

Re: image sequence - memory performance

No, not an option really. The whole sequence is more than 10GB.
by richy88
Tue Feb 28, 2017 2:01 pm
Forum: Support and Development
Topic: image sequence - memory performance
Replies: 5
Views: 3089

image sequence - memory performance

Hi, I'm trying to get an image sequence running. The performance is very good until the DDR is completly full. After that the GC seems to start working and making some space for new images on RAM. Is there any manual way to free RAM? Following a code snipped how I'm doing it right now: (maybe someth...