Hi all
How can one destroy a pbuffer? I’m using a pbuffer for offscreen rendering, and when resizing is needed, I must get rid of the old one and replace it with a new. However, the old one stays in the video memory, because the free memory decreases when I try to destroy the old one and create a new one. I tried to call
pbuffer.getContext().destroy();
pbuffer.removeGLEventListener(eventHandlingGLListener);
pbuffer.destroy();
but with no result. Any ideas or hints? I’m using a mobility radeon 9000 and I cehc my free GPU memory using the ATI Tray Tools utility.