answersLogoWhite

0

you can do this by updating your soft and hardware, in the control panel, in the system section

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you update OpenGL on Windows XP?

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.


How download opengl 2.0?

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.


Where can you download opengl for windows 7?

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.


Your inspiron 1525 laptop show you video card error on installing games after you format your computer while i already installed my video card driver.......?

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.


Explain the main components that are typically part of an Open GL C plus plus application?

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.


How to set java for openGL?

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.


If you update a driver and the new driver does not perform as expected how can you revert the old driver?

Rollback Driver feature


Opengl programming source code for pool game?

writ an opengl program for pool game


If you update a driver and the new driver does not perform as expected you can revert to the old driver by using the feature?

Driver Rollback


Windows vista your opengl is not working it says that it is not supported by your comp and goes back to software mode what do you do to play in opengl or give you a link to fix your opengl?

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.


What does Windows call the process of undoing a driver update?

It's Roll back. If the recent driver update, then you can "roll back" to a previous version to resolve the problem.


How do you you include opengl in c plus plus?

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).