Getting Started: Difference between revisions
Line 104: | Line 104: | ||
Assuming you know how to program in your language of choice, now all you need is to learn OpenGL. There are many online tutorials. Just search for <code>opengl+tutorial</code> in your favorite search engine. | Assuming you know how to program in your language of choice, now all you need is to learn OpenGL. There are many online tutorials. Just search for <code>opengl+tutorial</code> in your favorite search engine. | ||
== OpenGL Viewers== | == OpenGL Viewers== |
Revision as of 20:41, 3 April 2008
So you want to take advantage of the power of the OpenGL API? If you are visiting this page because a game or software implements the OpenGL API, you need to install the appropriate graphic driver which enables usage of the functionality provided.
To program using the OpenGL API, you need the driver and the development package (depends on platform and programming language). More platform-specific details are described in the sections below.
Windows
If you are running Windows 98/Me/NT/2000/XP/2003, the OpenGL library has already been installed on your system. Win95A did not come with GL, so Microsoft has made this available at: Windows OpenGL library.
Remember that GL is a system component on Windows. DO NOT modify or copy opengl32.dll from one OS to another.
The filename is opengl32.dll
and is either in WINDOWS\SYSTEM
, WINNT\SYSTEM32
or WINDOWS\SYSTEM32
. This also means that you do not have to ship a copy of the library with your application since it will already be available on the system.
The standard Windows OpenGL32.dll
library alone will not provide you with hardware acceleration for OpenGL. In order to get hardware acceleration, you will need to install the latest drivers for your graphics card:
Some sites also distribute beta versions of graphics drivers, which may give you access to bug fixes or new functionality before an official driver release from the manufacturer:
GLU is also included in the system folder as glu32.dll
This is also a system component. Updated DLL should be placed in your program's folder. You can get a GLU's source code from MESA3D. You can get precompiled lib from vmelkon's GLU; The current version is 1.3.
Other libraries like GLUT, freeGLUT, QT, etc are not part of the OS. These should be downloaded from the net. GLUT and OpenGL Utility Libraries
Windows 95, 98, Me, 2000 support OpenGL version 1.1 as a software rasterizer implemented in opengl32.dll
. There is no support for hardware acceleration therefore installing drivers is necessary. Windows XP supports OpenGL version 1.1 as a Direct3D wrapper in opengl32.dll
. Since performance will be lousy, installing drivers is a good idea. On Windows 2003, you aren't suppose to use it as a desktop machine, but it is similar to Win 2000. Windows Vista will support OpenGL version 1.4 as a Direct3D wrapper. Always install drivers.
64 bits Windows versions
If you are running the 64 bit version of Windows Vista or perhaps you are running Windows XP x64, you might be wondering if there is a OpenGL64.dll
file. The answer is no, there isn't. On both of these Operating Systems, Windows\System32
contains all the 64 bit DLLs. It contains the OpenGL32.dll
which is actually a 64 bit dll.
For 32 bit programs, Windows detects the exe as a 32 bit program and instead of using System32 files, it uses Windows\SysWOW64 which actually contains the 32 bit DLLs. WOW means Windows On Windows which is a backwards-compatibility layer.
To find your Windows' System32 directory, go to: Start, Run... and type in %WINDIR%\System32
. The system will redirect you to the default System32 directory automatically; this is also true for the 32 bits versions of Windows.
Linux
Graphics on Linux is almost exclusively implemented using the X windows system. Supporting OpenGL on Linux involves using GLX extensions to the X Server. There is a standard Application Binary Interface defined for OpenGL on Linux that gives application compatability for OpenGL for a range of drivers. In addition the Direct Rendering Infrastucture (DRI) is a driver framework that allows drivers to be written and interoperate within a standard framework to easily support hardware acceleration, the DRI is included in of XFree86 4.0 but may need a card specific driver to be configured after installation. These days, XFree86 has been rejected in favor of XOrg due to the change in the license of XFree86, so many developers left Xfree86 and joined the XOrg group. Popular Linux distros come with XOrg now. Developers
Vendors have different approaches to drivers on Linux, some support Open Source efforts using the DRI, and others support closed source frameworks but all methods support the standard ABI that will allow correctly written OpenGL applications to run on Linux.
For more information on developing OpenGL applications on Linux, see Platform specifics: Linux
Linux comes with Mesa libraries, which implements the OpenGL API as a software rasterizer. Most Linux distros don't come with hardware acceleration. Some Linux distributions may include support for hardware acceleration. Also, some GPUs have Open Source drivers developed by the community even though a close source driver may be available from the manufacturer.
Mac OS X
Every version of Mac OS X has shipped with OpenGL runtime libraries pre-installed. Users who want to run OpenGL applications do not need to install or configure anything.
Unlike other platforms, where the Operating System and OpenGL implementations are often updated separately, OpenGL updates are usually included as part of Mac OS X system updates. To obtain the latest OpenGL on Mac OS X, users should upgrade to the latest OS release, which can be found at: [1].
For developers, a default installation of Mac OS X does not include any OpenGL headers, nor does it include other necessary development tools. These are installed by a separate developer tools package [2]. This installer includes the OpenGL headers, compilers (gcc), debuggers (gdb), Apple's Xcode IDE, and a number of performance tools useful for OpenGL application development.
For more information on developing OpenGL applications on Mac OS X, see Platform specifics: Mac OS X.
OpenGL 2.0 and extensions
If you will be programming for Windows, typically compilers comes with a standard OpenGL 1.1 .h
and .lib
.
For Linux and others, you might want to borrow the same idea (getting function pointers for the GL functions)
To access higher OpenGL functions, you would have to get the function pointers.
For example, in C or C++, this is what you would do
Download glext.h
and wglext.h
from The Extensions Registry
Put it in your compiler's GL folder.
include <GL/gl.h> include <GL/glext.h> include <GL/wglext.h> extern PFNGLACTIVETEXTUREPROC glActiveTexture; //Put this in a .h so that you can include the header in all your other .cpp PFNGLACTIVETEXTUREPROC glActiveTexture; //Declare your function pointer in a .cpp file
Once you create a GL context, you can use wglGetProcAddress to get a pointer to the function.
glActiveTexture = (PFNGLACTIVETEXTUREPROC) wglGetProcAddress("glActiveTexture");
This would be tedious if you had to do this for all the functions and it's is even more work if you want to detect a certain OpenGL API version, then load all the core functions. Then, detect if a certain extension is present, then load all the functions.
There exists a few libraries out there that will get the function pointers for you. All you have to do is create an OpenGL rendering context and call the library's init function. The recent version of GLee doesn't require a call to its init function.
Examples are :
How to make your first OpenGL Program
The first thing to do is chose a programming language. It could be C++, C++ Managed, Visual Basic, Visual Basic .NET, Pascal, Java, Ada, x86 assembly, etc.
The second thing is to chose a compiler. It could be MS Visual C++, DevC++, Delphi, Masm, etc. Remember that OpenGL is an API, so as long as you have the language bindings for your compiler, you can do OpenGL programming.
Typically, a compiler comes with the binding files. For example, if you have a C++ compiler, it will come with gl.h
and opengl32.lib
. It may even come with glu.h
and glu32.lib
, glut.h
and glut32.lib
.
If you don't have your binding files, you will need to figure out where to download them from. Microsoft releases their Windows Platform SDK which contains these files and most likely you don't need it because your compiler came with the files.
You might want to use SDL, GLUT, freeGLUT, or some other wrapper that takes care of creating a GL window for you and destroying for you. It makes it easier for someone who just wants to learn the OpenGL API syntax.
Assuming you know how to program in your language of choice, now all you need is to learn OpenGL. There are many online tutorials. Just search for opengl+tutorial
in your favorite search engine.
OpenGL Viewers
These are programs that you install and run, and they give you information specific to the OpenGL API your system implements, like the version offered by your system, the vendor, the renderer, the extension list, supported viewport size, line size, point size, plus many other details. Some might include a benchmark. Some are standalone benchmarks.