Re: JSR 231 is using default MS driver, not card driver
Posted by kitfox on Jul 04, 2011; 12:34am
URL: https://forum.jogamp.org/JSR-231-is-using-default-MS-driver-not-card-driver-tp3128722p3136173.html
I installed the glview program, but I'm not sure exactly what it is you want me to verify.
I'm declaring my capabilities like this:
[code]
private static GLCapabilities getCapabilities()
{
GLProfile glprofile = GLProfile.getDefault();
GLCapabilities cap = new GLCapabilities(glprofile);
System.err.println(cap);
return cap;
}
[/code]
The println gives:
GL_WIN_swap_hint GL_EXT_bgra GL_EXT_paletted_texture
I am able to run a different JOGL 1.1.1 app that does use shaders on this same machine with no problems. I'm not running this on a remote display device. I've also run games that I'm pretty sure use shaders on this machine.