Hi, Just a quick question.
I was wondering if it was possible to get the graphics card make and model using JOGL or just JAVA?
Thanks
Hi, Just a quick question.
I was wondering if it was possible to get the graphics card make and model using JOGL or just JAVA?
Thanks
glGet() with GL_VENDOR, GL_RENDERER and GL_VERSION should give you that information. Must be called after a GL display has been created and in the correct gl thread.
Thank you that’s just what I was looking for