hi there!
i am currently developing a dual projector app, running 2xWUXGA(1920x1200) with softedge and warping.
for this i need a huge offscreen fbo (1920x1920) which normally makes no problems.
but: as soon as i set the maximum heap size (-Xmx) to something around 1500mb, i get a problem creating the fbo. the console then gives me:
Code:Frame buffer is incomplete (GL_FRAMEBUFFER_UNSUPPORTED_EXT)
OpenGL error 1285 at render_triangles in: out of memory
if i raise the maximum even up to 1600m, i get an obvious:
Code:
Error occurred during initialization of VM
Could not reserve enough space for object heap
so my question is: is the memory for the fbo allocated in the ram and not on the gpu, so when running settings close to the maximum for the jvm, the fbo memory fails to allocate fully?
and while we are at it: i guess switching over to 64-bit java will be the solution, are there any issues or limitations with eclipse/processing/jogl/glgraphics that i should take into account?
i will post example code in my next post...