Click here to Skip to main content
15,887,477 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello!

I want to know about the OpenGL version of the Windows 8.
I've checked that the OpenGL version of the Windows 7 is 3.1.

Any way to check the OpenGL version of the Windows 8? or
Any information about the version number?

Thanks in advance.
Posted

1 solution

Please call glGetString( GL_VERSION ) to get the version of OpenGL.

The GL_VERSION strings begin with a version number. The version number uses one of these forms:

major_number.minor_number major_number.minor_number.release_number

Vendor-specific information may follow the version number. Its format depends on the implementation, but a space always separates the version number and the vendor-specific information.

Other Softwares to get the detailed information of opengl features like OpenGL Extension viewer is also available.
http://www.realtech-vr.com/glview/

OpenGL version may change in an Operating system based on the graphics card and driver available.
Its better to call glGetString() in your application, or use other software to get the opengl version.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900