Hi there,
I need to get this information from the graphics card driver:
Can someone tell me how to get that information?
Thank you.
Call GL.GetString with StringName.Vendor and StringName.Version as parameters.
GL.GetString
StringName.Vendor
StringName.Version
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.
Check out the rest of the StringName options. StringName.Renderer should get you the driver version information.
StringName.Renderer
Comments
Re: Retrieving the graphics card driver info
Call
GL.GetStringwithStringName.VendorandStringName.Versionas parameters.Re: Retrieving the graphics card driver info
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.
Re: Retrieving the graphics card driver info
Check out the rest of the StringName options.
StringName.Renderershould get you the driver version information.