exoide's picture

Retrieving the graphics card driver info

Hi there,

I need to get this information from the graphics card driver:

  • Manufacturer
  • Driver version

Can someone tell me how to get that information?

Thank you.


Comments

the Fiddler's picture

Call GL.GetString with StringName.Vendor and StringName.Version as parameters.

exoide's picture

Hi Fiddler,

StringName.Version returns the OpenGL version and I want to get the driver version.

Do you know how to get it?

Thank you for your help.

the Fiddler's picture

Check out the rest of the StringName options. StringName.Renderer should get you the driver version information.