Attention- this is the OLD download section of Guru3D.com, to visitthe new and up-to date one.Newest DownloadsMost DownloadedGeforce ForceWare 181.00 Vista 32-bitOn this pageyou can download Geforce ForceWare 181.00 Vista 32-bit. Version:181.00Publisher:NVIDIADateadded:2008-12-19 02:00:49File Size:58 MBOSSupport:Windows Vista 32-bitLicense:FreewareDownloads:18969 downloadsSoftware type:Videocards - NVIDIA GeForce Vista 7You are here:Guru3D.com»»» Geforce ForceWare 181.00 Vista 32-bitSoftware DescriptionDownload Geforce ForceWare 181.00 for Windows Vista 32-bit. NVIDIA is distributing a new revision GeForce driver. First off, this is a developer driver, mainly showing OpenGL 3.0 support.
Though it should work fine for the cards supported, this is not a final driver.The driver has full support for OpenGL 3.0 and version 1.3 of the OpenGL shading language (GLSL).The drivers work on Geforce 8 or newer graphics cards along with a number of Quadro professional offerings. According to Nvidia, these drivers allow developers to 'immediately begin using these drivers to build OpenGL 3.0 functionality into their software to give end-users new, superior graphics reproduction and visualization features.'

I've been looking for OpenGL version 2.0 or higher, but I haven't found anything I could use so far. There is no download section on the official website and google finds mostly stuff like OpenGL Viewer or OpenGL Screen Saver, but I am looking for OpenGL to develop games/graphics/vizualizations ( precisely version 2.0, but I know that higher versions are also compatible with 2.0 then they are also OK ). Could someone please give me a source, which I could get appropriate OpenGL for my project from? I've managed only to download one, but it didn't work, because it was created for 32bit OS, and I use 64bit windows 7. Does anyone know how to handle this problem as well?this is my graphic card: NVIDIA GeForce 9600M GS.
You don't have to download an SDK to use OpenGL in 64-bit applications on Windows. All you need is a 64-bit capable compiler, and the Windows Platform SDK (which comes bundled with Microsoft Visual Studio).But there is a catch: Microsoft's OpenGL implementation hasn't been updated since OpenGL 1.1, and to use functionality from later versions OpenGL, you need to use OpenGL-extensions. Luckily, has made, a library that does the extension-work for you and allows you to simply compile OpenGL 2.0 (and later, as GLEW is updated) source code for Windows. Perhaps this is what you're looking for? Kusma is completely right, but maybe you'll need more precise directions.First you'll need OpenGL libraries.
These will be given with your Visual Studio / mingw / whatever installation.Then you'll need to create an OpenGL window. You can do it with windows functions, but it is a nightmare. You should go for something like GLFW.Then you'll need something to deal with openGL extensions ( as kusma said, you don't want OpenGL 1.1 only ). Use GLEW.You will also need some math stuff: create a vector ( on the C side ), compute your projection matrix. GLM can do that for you.Last but not least, you may want to use Cg for your shaders (but you can use GLSL instead, which is 'built-in' in OpenGL). The easy way to tell is if your using glBegin/glEnd statements you using old context methods (good for quick demos and prototyping, bad if your looking to do something that needs to look professional). When you start dealing with opengl topics that cover buffers and hint to VBO- vertex buffer objects and FBOs - Frame buffer objects your in the area of more modern opengl methods.

If you want to get up to speed in the shortest amount of time, start with buffers and keep working your way forward. Just remember when your dealing with device contexts (methods to create your windows) if you stick with OGL 2.1 or lower your limiting yourself ( Think roughly DirectX9/early DirectX10). Your video card handles DirectX10 and OpenGL 3. Best bet start there.

Check out NVidia's developer site, And, take a look at site check out the forums -, the guys there are helpful (be careful not to re-post old questions).Also check out - its a good start - and he labels his tutorials by ogl versions.