Search found 3 matches

by quark
Mon Aug 09, 2010 10:01 am
Forum: General
Topic: Latency of Input Events?
Replies: 10
Views: 8180

Re: Latency of Input Events?

kikito wrote:But is that your complete main.lua file, or are you doing something else (i.e. in love.update)
that is a complete main.lua ....

I found that love-hg is faster. Maybe my hardware is somehow slow, but love uses < 10% CPU, it is strange ...
by quark
Mon Aug 09, 2010 6:38 am
Forum: General
Topic: Latency of Input Events?
Replies: 10
Views: 8180

Re: Latency of Input Events?

I'm not experiencing anything like that. Can you put a code sample? For example, function love.draw() local mx, my = love.mouse.getPosition() love.graphics.print(mx..' '..my, 200, 200) end If I move mouse from (x0, y0) to (x1, y1) and stop there, love will display two changing numbers and finally s...
by quark
Mon Aug 09, 2010 6:22 am
Forum: General
Topic: Latency of Input Events?
Replies: 10
Views: 8180

Latency of Input Events?

I am experiencing high latency of input events. I use 'print' to print mouse position / key pressed events, love usually print the current events 1 second later (no matter where I moniter these events: draw(), update(), mousepressed(), etc. Latency can also be sensed using samples from wiki. Is ther...