you can do this by updating your soft and hardware, in the control panel, in the system section
OpenGL is an API provided by your graphics card driver. To update it, you need to download newer drivers for your graphics card. If this does not resolve your issue, you will need to purchase a new graphics card to use the application.
OpenGL isn't a program, its an API to access features of a graphics card from an application. To use OpenGL programs, you either need a driver for your video card that supports OpenGL, or the applications needs to be compiled with support for Mesa 3D, a software renderer.
So you want to take advantage of the power of the OpenGL API? If you are visiting this page because a game or software uses the OpenGL API, you need to install the appropriate graphic driver which enables usage of the functionality provided.
Without knowing what games you were trying or what error messages you are receiving, it is very difficult to identify what the problem may be. Drivers downloaded through Windows update do not support OpenGL, so if a game you are trying to play, such as Quake III, uses or requires OpenGL, you will need to download a driver from somewhere else.
OpenGL is a graphics specification thus any application that makes use of the specification will primarily make use of an OpenGL implementation library. You will also need a graphics card driver that supports OpenGL. Mac and Unix/Linux systems include OpenGL drivers as standard, but PC-based systems do not. You must therefore install the appropriate driver (where required) and also install an OpenGL implementation library. Both ATI and nVidia provide their own proprietary libraries, but you can also use generic libraries (including open source libraries) to provide cross-platform support.
Java has no native support for OpenGL. While there are some third-party attempts, I have yet to hear of one which completely implements OpenGL.
Rollback Driver feature
writ an opengl program for pool game
Driver Rollback
In order to run OpenGL on Vista, you must download and install a program called GLDirect. This program allows you to run OpenGL-based games and other applications using your graphics card's DirectX drivers.
It's Roll back. If the recent driver update, then you can "roll back" to a previous version to resolve the problem.
OpenGL is not software, it is a specification for cross-platform graphics rendering. All modern graphics cards support the OpenGL specification. In order to program with OpenGL you must first load the OpenGL function pointers. Although you can do this manually it's best to use a library specific to your hardware. Both nVidia and ATI provide their own libraries with tutorials. Remember that OpenGL is not software so there is no official SDK as such. There is no header file named 'opengl' (not officially at least). The OpenGL library headers typically use a gl prefix, such as gl.h, glut.h and glaux.h. The best place to start is by reading the FAQ provided by the official OpenGL website (see related links below). If you're using Windows, you also have the option of using the DirectX API rather than OpenGL. DirectX is not only easier to work with, it also provides support for audio, animation, networking, and so on. OpenGL is purely for graphics rendering but is cross-platform (DirectX only works with Windows).