https://github.com/daviel/Love2D-Benchmarks
This are a few benchmarks for testing the pure performance of Love2D. I implemented a naive approach first and then tried to optimize it. I also tested the new Love 11.1 versus the older version of 0.10.2.
I made some Love2D benchmarks for testing its pure performance. Feedback and thoughts are appreciated!
Re: I made some Love2D benchmarks for testing its pure performance. Feedback and thoughts are appreciated!
Looks OK, although FPS is not a specific measure of performance. For example if you want to test the physics system you should do it without any rendering since that could be a bottleneck.
Could become:
Would be even faster if we had body:getTransform()
Code: Select all
for x=0, objectCount do
objectsBatch:set(objects[x].id, objects[x].body:getX(), objects[x].body:getY(), objects[x].body:getAngle() )
end
Code: Select all
for i=0, objectCount do
local object = objects[i]
local body = object.body -- faster using locals
local x,y = body:getPosition() -- reduces the number of getX/getY function calls
local a = body:getAngle()
objectsBatch:set(object.id, x, y, a)
end
Re: I made some Love2D benchmarks for testing its pure performance. Feedback and thoughts are appreciated!
You're right FPS is bad for comparability. But it can give hints for pure performance measurement. I used a mixture of rendering and physics as it would be more alike to "real" games.
I will implement your suggestions and rerun the tests.
I will implement your suggestions and rerun the tests.
Re: I made some Love2D benchmarks for testing its pure performance. Feedback and thoughts are appreciated!
I added your suggestions and even made a pull request for a body:getTransform() method https://bitbucket.org/rude/love/pull-re ... ethod/diff.
With this changes we win like 5% in speed.
With this changes we win like 5% in speed.
Re: I made some Love2D benchmarks for testing its pure performance. Feedback and thoughts are appreciated!
Cool, I complained about getTransform before on the issue tracker (along with several other suggestions). Would be great if it's included in the future.
Who is online
Users browsing this forum: Ahrefs [Bot], Bing [Bot] and 0 guests