Quick Links: Download Gideros Studio | Gideros Documentation | Gideros community chat | DONATE
Large slowdown in 3D instancing in 2024 3dbase library — Gideros Forum

Large slowdown in 3D instancing in 2024 3dbase library

I've noticed a dramatic slowdown in some 3D processing between version 2024.2 and 2024.6.1, and still present in the latest version. One of my apps uses a few thousand instances of 3D primitive shapes to build fishing flies. Up to 2024.2 a fairly complicated fly could load almost instantly, in 0.3 seconds. I only see that slowdown with models with large numbers of instances. When I include the 3dbase library from 2024.6.1 or newer that time goes from 0.3 seconds to 5.93 seconds. Here's an video showing the change:

Once the instances are defined, the frame rate is fine. I haven't tried profiling it, but it seems like updateInstances or something similar may be involved.

It's not a major problem for me as I can continue to use the older 3D library, but I thought I should report this.

Comments

  • hgy29hgy29 Maintainer
    @PaulH,
    I am not sure what changes would have made it slower, can you take the time to profile both versions (with Gideros Studio profiler) and share the results ?
  • PaulHPaulH Member
    Will do.

    Likes: MoKaLux

    +1 -1 (+1 / -0 )Share on Facebook
  • PaulHPaulH Member
    Profiling revealed the change:

    In 3DShapes.lua setInstanceCount() now calls updateInstances(). My code changes the number of instances thousands of times, 5,152 in this case, as it builds them dynamically, and can't set the matrix for each new instance unless it is within the number of instances indicated by the most recent call to setInstanceCount. This code then calls updateInstances() only once per mesh when its done defining them all, 8 times in this case, taking only 5 ms. By adding updateInstances() to setInstanceCount() it's now doing updateInstances() 5,152 times, and that's taking 5,360 ms.

    Commenting out the added call to updateInstances in setInstanceCount eliminates the slowdown.

    It seems to me to be more appropriate to have the calling code call updateInstances when it's done with any changes to the number of them. If there's a good reason to have setInstanceCount call updateInstances every time by default, I'd like an optional parameter that would skip that.

    Likes: MoKaLux

    +1 -1 (+1 / -0 )Share on Facebook
  • hgy29hgy29 Maintainer
    Ahh, I remember now, I added it to prevent a crash in Gideros when instancing would have been activated (setInstanceCount plus appropriate shader) but actual shader data not filled (setGenericArray). Gideros can't detect this situation but GPU driver would crash.

    Perhaps the best thing to do is to delay actual Mesh:setInstanceCount and Shader update into the updateInstances() call, making the setInstanceCount an almost no op call by itself.

    Likes: MoKaLux

    +1 -1 (+1 / -0 )Share on Facebook
  • hgy29hgy29 Maintainer
    Accepted Answer
Sign In or Register to comment.