Search found 3 matches

by bcolin
Tue Oct 07, 2014 6:04 pm
Forum: Support and Development
Topic: LÖVE framerate stutters?
Replies: 37
Views: 25079

Re: LÖVE framerate stutters?

Stopping the garbage collector stopped the stuttering? Keep it stopped and call collectgarbage("step", 1) each update. I'd test it myself but I'm at school. But as Robin says, make sure you are not creating objects each frame. Especially something that you don't need to recreate each fram...
by bcolin
Mon Oct 06, 2014 5:40 pm
Forum: Support and Development
Topic: LÖVE framerate stutters?
Replies: 37
Views: 25079

Re: LÖVE framerate stutters?

have you investigated if it's the garbage collector? try 'collectgarbage(''stop")' at the start of your minimal test case. Great suggestion, thanks! Things get weird ... - Disabling the GC suppress the stutter on my own program! (But now it eat all the available RAM until being automatically k...
by bcolin
Sun Oct 05, 2014 10:21 am
Forum: Support and Development
Topic: LÖVE framerate stutters?
Replies: 37
Views: 25079

Re: LÖVE framerate stutters?

Hi all, Same problem here on my machine : win8 x64 with ATI graphic card. I actually see the stutter by running the "stuttertest.love" program on this thread, and the stutter is very visible on my own program with intensive drawing. Every second (more or less), the graphic freeze, I also n...