Main Menu

Recent posts

#11
Support / Re: Is there any magic to comp...
Last post by EgonOlsen - March 06, 2025, 06:53:09 AM
Can you provide a test case that shows that it works uncompiled not not compiled? So that I can see what's actually wrong? I assume that it's a kind of configuration issue, but it's hard to tell without knowing what the actual problem looks like.
#12
Support / Re: Is there any magic to comp...
Last post by AGP - March 05, 2025, 09:31:30 AM
GenericVertexController. Is there another way? Anyway, what values should I plug in for compile()?
#13
Support / Re: Is there any magic to comp...
Last post by EgonOlsen - February 27, 2025, 09:11:53 AM
How are you applying your animation? In an IVertexController or in some other way?
#14
Support / Re: Is there any magic to comp...
Last post by AGP - February 26, 2025, 08:46:00 PM
I just tried, since I don't know what to put in for batchSize, the following. Still breaks the animation.

obj.compile(true, true, true, false, -1);
#15
Support / Re: Is there any magic to comp...
Last post by EgonOlsen - February 26, 2025, 06:33:46 AM
compile(true) compiles the object to use client side data for the GPU (i.e. it resides in the system's memory) while (false) compiles it to use server side memory (i.e. on the GPU). The former is more suitable for objects that change after compilation while the latter is faster for static objects. Have to tried to compiled it with (true) and indexing disabled?
#16
Support / Re: Software Render Color Dept...
Last post by EgonOlsen - February 26, 2025, 06:29:10 AM
That's because the GL renderer discards a texture's actual pixel data once it has been uploaded to the GPU. There's a 'keepPixelData()' method in Texture to prevent this.
#17
Support / Re: Software Render Color Dept...
Last post by AGP - February 26, 2025, 02:38:36 AM
Now I want the same code to also work with OpenGL. But I'm getting:
QuoteException in thread "main" java.lang.NullPointerException: Cannot read the array length because "this.texels" is null
#18
Support / Is there any magic to compile(...
Last post by AGP - February 24, 2025, 08:52:34 PM
I can do compile(true) and not lose animations on Raft's bones. But it breaks the animations on my GLB models with my own bone structure. Is there anything that I should be overriding and adding? If not, would you have a clue as to what's doing this?
#19
Support / Re: Software Render Color Dept...
Last post by EgonOlsen - February 19, 2025, 06:58:07 AM
Yes, a little bit...  ;) It's actually a performance issue. The "old" transparency code is optimized for speed and not accuracy, which is why its results are  not on par with what the GL renderer could do. The alpha stuff has been added much later. It's more flexible but also slower.
#20
Support / Re: Software Render Color Dept...
Last post by AGP - February 16, 2025, 09:52:21 PM
Thanks a lot. It is unnecessarily complicated, though, isn't it?