Hi,
I want to give a try to pbuffer with lwjgl. I try for at least 1h to just create it (i try lwjgl 1 and lwjgl 2) with no luck.
when i do :
1 2 3 4 5 6 7 8
| if ((Pbuffer.getCapabilities() & Pbuffer.PBUFFER_SUPPORTED) == 0) { System.out.println("No Pbuffer support!"); } else { System.out.println("Pbuffer support"); } |
It says that pbuffer is support, but when i create the pbuffer (lwjgl 2) :
1
| pbuffer = new Pbuffer(width,height,new PixelFormat(),Display.getDrawable()); |
I got a org.lwjgl.LWJGLException: Failed to find ARB pixel format 0 -1.
I try the pbuffer test in the demo, and same thing (I should have start with that

)
After some search on the web, it seems that it comes from my video card (that supposed to be able to use pbuffer). Anyone got the same problem and solve it ?
By the way, in the pbuffer demo, it seems that the pbuffer is create BEFORE testing that it can be created
