Hi, I have a workaround for the fact that the Mesa drivers for Linux don’t seem to have pbuffer support consistently, and in these cases I use a Java2D solution to create an image and use as a texture.
In those cases when I see a non mesa driver I test for the GL_ARB_pbuffer extention using
boolean is available = gl.isExtensionAvailable(“GL_ARB_pbuffer”);
However when I try this on a machine using the ATI drivers fglrx_6_8_0-8.8.25-1 I get a false return.
Can anybody tell me which extension I should test for to check if pbuffers are available.
Hoping I can thank someone.
John