Hello,
I’m working on a new voxel renderer using 3d texturing (for the curious: www.endrov.net). now, it’s quite a bit of texture data so:
- has anyone written a texturerenderer equivalent for 3d? I’m very pleased with the 2d performance (gained 4x over a normal texture upload)
- is it possible to upload the texture asynchronously with the JOGL binding and if so, anyone got some code lying around to get it right? it seems FBOs might(?) be able to pull something like this off but how does it mix with threads in java?
- has anyone benchmarked what is the optimal size of the 3d texture? I can split it up everything into smaller cubes if it helps. I thought of doing this anyway for progressive loading.
thanks