Author Topic: Voxel Engine  (Read 6229 times)

Offline aZen

  • int
  • **
  • Posts: 94
    • View Profile
Voxel Engine
« on: March 07, 2014, 08:28:44 pm »
I'm planning to write my own software rendering engine for voxels, since unfortunately the speed of the JPCT software renderer (even with mesh optimization) doesn't cut it for me. Inspiration is drawn form Slab6,which uses software renderer and is <lightning> fast.

I was wondering if you could give me some input to get started @ EgonOlsen. Thank you!

Edit: Also, do you think it's a good idea? Do you think I could get similar rendering speed in Java compared to Slab6?
« Last Edit: March 07, 2014, 08:34:14 pm by aZen »

Offline EgonOlsen

  • Administrator
  • quad
  • *****
  • Posts: 12295
    • View Profile
    • http://www.jpct.net
Re: Voxel Engine
« Reply #1 on: March 07, 2014, 09:27:35 pm »
You won't find any faster software renderer for Java than what jPCT offers IF (big if!) you are looking for something that renders smooth shaded, textured and depth buffered, perspective correct polygons with sub-pixel accuracy.
That slab thing seems (judging just from the look of the renderings) to do flat shaded, untextured polygons (not sure about the depth buffer...i guess you don't need that for voxels?). If you limit yourself to that, you might be able to get better performance out of it than what you have ATM. It won't be as fast as slab though, because Java is pretty bad in displaying the actual rendering. Copying the image to screen takes more time than it actually should in Java.
Also keep in mind that jPCT already offloads the rendering to multiple cores. You either have to do this too in your software renderer or you have to be multiple times faster to surpass it in terms of performance.


Offline aZen

  • int
  • **
  • Posts: 94
    • View Profile
Re: Voxel Engine
« Reply #2 on: March 09, 2014, 07:28:10 pm »
Sweet, thank you for your reply! I'll do some testing and come back here when I have something cool we can talk about =)