FAQ
This article contains inaccurate information. Further details can be found on the talk page. |
Welcome to the FAQ
What is OpenGL?
OpenGL stands for Open Graphics Library. It is an API for doing 3D graphics.
In more specific terms, it is an API that is used to "draw triangles on your scene". In this age of GPUs, it is about talking to the GPU so that it does the job of drawing. It does not deal with file formats. It does not open bmp, png and any image format. It does not open 3d object formats like obj, max, maya. It does not do animation. It does not handle keyboard, mouse and any input devices. It does not create a window, and so on.
All that stuff should be handled by an external library (GLUT is one example that is used for creating and destroying a window and handling mouse and keyboard).
GL has gone through a number of versions.
What is NOT OpenGL?
GLUT is not OpenGL. Problems with keyboard input or animation timing or the like when you are using GLUT are problems with GLUT, not problems with OpenGL.
Who maintains?
The OpenGL Architectural Review Board or ARB.
Is OpenGL Open Source?
No, OpenGL doesn't have any source code. GL is a specification which can be found on this website. It describes the interface the programmer uses and expected behavior. OpenGL is an open specification. Anyone can download the spec for free. This is as opposed to ISO standards and specifications, which cost money to access.
There is an implementation of GL that is Open Source and it is called Mesa3D http://www.mesa3d.org
It doesn't have the license to call itself OpenGL, but it does follow the spec very well.
Where can I download?
Just like the "Open Source?" section explains, OpenGL is not a software product. it is a specification.
On Mac OS X, Apple's OpenGL implementation is included.
On Windows, companies like nVidia and AMD/ATI use the spec to write their own implementation, so OpenGL is included in the drivers that they supply. For laptop owners, however, you'll need to visit the manufacturer of your laptop and download the drivers from them.
Where can I download? #2
When you update your video driver, this is good enough for people who want to play games or run some application. For programmers, installing drivers will not give you a gl.h file. It will not give you opengl32.lib. Those are files that come with your compiler (on Windows, your compiler might need opengl32.lib or perhaps opengl32.a). Also, there are no updated gl.h and opengl32.lib file. These are stuck at GL 1.1 and will be forever. Read the Getting Started section to learn what you must do. http://www.opengl.org/wiki/Getting_started Also, installing a video driver will not replace opengl32.dll. It is a system file and belongs to Windows. Only Microsoft may update it. When you install a video driver, another file will be copied to your system (nvoglv32.dll in the case of nVidia) and the registry will be modified. opengl32.dll will call into the real GL driver (nvoglv32.dll).
Is there an OpenGL SDK?
There is no actual OpenGL SDK. There is a collection of websites, some (outdated) documentation, and links to tutorials, all found here. But it is not an SDK of the kind you are thinking about.
NVIDIA and ATI have their own SDKs, both of which have various example code for OpenGL.
What platforms have GL?
- Windows: 95 and above
- Mac OSX: all versions
- Linux: this depends on the distributions. Distros meant for desktop usage come with Gnome, KDE or some windows manager and OpenGL is either supplied as Mesa (software rasterizer) or they provide proper drivers.
- FreeBSD: unknown
OpenGL ES is often supported on embedded systems, but OpenGL ES is a different API from regular OpenGL.
GL context
What is a GL context? Why do you need a window to do GL rendering?
The GL context comprises resources (driver resources in RAM, texture IDs assigned, VBO IDs assigned, enabled states (GL_BLEND, GL_DEPTH_TEST) and many other things). Think of the GL context as some memory allocated by the driver to store some information about the state of your GL program.
You must create a GL context in order for your GL function calls to make sense. You can't just write a minimal program such as this
int main(int argc, char **argv) { char *GL_version=(char *)glGetString(GL_VERSION); char *GL_vendor=(char *)glGetString(GL_VENDOR); char *GL_renderer=(char *)glGetString(GL_RENDERER); return 0; }
In the above, the programmer simply wants to get information about this system (he doesn't want to render anything) but it simply won't work because no communication has been established with the GL driver. The GL driver also needs to allocate resources with respect to the window such as a backbuffer. Based on the pixelformat you have chosen, there can be a color buffer with some format such as BGRA8. There may or may not be a depth buffer. The depth might contain 24 bits. There might be a 8 bit stencil. There might be an accumulation buffer. Perhaps the pixelformat you have chosen can do multisampling. Up until now, no one has introduced a windowless context.
You must create a window. You must select a pixelformat. You must create a GL context. You must make the GL context current (wglMakeCurrent for Windows and glXMakeCurrent for *nix).
Some people want to do offscreen rendering and they don't want to show a window to the user. The only solution is to create a window and make it invisible, select a pixelformat, create a GL context, make the context current. Now you can make GL function calls. You should make a FBO and render to that. If you chose to not create a FBO and you prefer to use the backbuffer, there is a risk that it won't work.
- http://www.opengl.org/wiki/Common_Mistakes#The_Pixel_Ownership_Problem
- http://www.opengl.org/wiki/Common_Mistakes#The_Object_Oriented_Language_Problem
- http://www.opengl.org/wiki/Platform_specifics
How Does It Work On Windows?
All Windows versions support OpenGL.
When you compile an application, you link with opengl32.dll (even on Win64).
When you run your program, opengl32.dll gets loaded and it checks in the Windows registry if there is a true GL driver. If there is, it will load it. For example, ATI's GL driver name starts with atioglxx.dll and nVidia's GL driver is nvoglv32.dll. The actual names change from release versions.
opengl32.dll is limited to 1.1. For GL >=1.2 functions, you get a function pointer with wglGetProcAddress. Examples are glActiveTexture, glBindBuffer, glVertexAttribPointer. wglGetProcAddress returns an address from the real driver in these cases.
The only important thing to know is that opengl32.dll belongs to Microsoft. No one can modify it. You must not replace it. You must not ship your application with this file. You must not ship nvoglv32.dll or any other system file either.
It is the responsibility of the user to install the driver made available from Dell, HP, nVidia, ATI/AMD, Intel, SiS, and whatever. Though feel free to remind them to do so.
How do I tell what version of OpenGL I'm using?
Use the function glGetString(GL_VERSION)
. This will return a null-terminated string. Do not copy this string into a fixed-length buffer, as it can be fairly long.
The string has a specific format:
<major version>.<minor version>
Following the minor version can be another '.' with a vendor-specific build number. Following that is entirely vendor-specific information. The format of this information is up to the driver writers.
Alternatively, you can use glGetIntegerv(GL_MAJOR_VERSION, *)
and glGetIntegerv(GL_MINOR_VERSION, *)
. These require GL 3.0 or greater.
It is also recommended to check who the vendor is by calling glGetString(GL_VENDOR)
. It should return the company who designed the GPU. Example : in the case of nVidia, you get NVIDIA Corporation. We should also state that there is no guarantee that it will forever be NVIDIA Corporation. The company may choose to change it as they wish.
If you are on Windows and no official graphics driver is installed, you might get Microsoft. On Linux systems, you might get Mesa since the Mesa library is usually installed and it handles the OpenGL rendering. You might get Mesa Project.
It is also recommended to check who the renderer is by calling glGetString(GL_RENDERER)
. This might return the graphics card name.
If you are on Windows and no official graphics driver is installed, you might get GDI Generic or Direct3D. On Linux systems, you might get Mesa since the Mesa library is usually installed and it handles the OpenGL rendering. You might get Software Rasterizer. You might get the graphics card name.
Why is my GL version only 1.4 or lower?
There are two reasons you may get an unexpectedly low OpenGL version.
On Windows, you may be a low GL version if, during context creation, you use an unaccelerated pixel format. This means you get the default implementation of OpenGL. Depending on whether you are using Windows Vista or earlier versions of Windows, this may mean you get a software GL 1.1 implementation, or a hardware GL 1.5 implementation.
The solution to this is to be more careful in your pixel format selection.
The other reason is that the makers of your video card (and therefore the makers of your video drivers) do not provide an up-to-date OpenGL implementation. There are a number of defunct graphics card vendors out there. However, of the non-defunct ones, this is most likely to happen with Intel's integrated GPUs.
Intel does not provide a proper, up-to-date OpenGL implementation for their integrated GPUs. There is nothing that can be done about this. NVIDIA and ATI provide good support for their integrated GPUs.
glTranslate, glRotate, glScale
Are these hardware accelerated?
No, there are no known GPUs that execute this. The driver computes the matrix on the CPU and uploads it to the GPU.
All the other matrix operations are done on the CPU as well : glPushMatrix, glPopMatrix, glLoadIdentity, glFrustum, glOrtho.
This is the reason why these functions are considered deprecated in GL 3.0. You should have your own math library, build your own matrix, upload your matrix to the shader.
A list of various libraries is at Alternative Game Libraries.
Fixed function and modern GPUs
Modern GPUs no longer support fixed function. Everything is done with shaders. In order to preserve compatibility, the GL driver generates a shader that simulates the fixed function. It is recommended that all new modern programs use shaders. New users need not learn fixed function related operations of GL such as glLight, glMaterial, glTexEnv and many others.
How to render in pixel space
Setup a certain projection matrix
glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0.0, WindowWidth, 0.0, WindowHeight, -1.0, 1.0); //Setup modelview to identity if you don't need GL to move around objects for you glMatrixMode(GL_MODELVIEW); glLoadIdentity();
Notice that y axis goes from bottom to top because of the glOrtho call. You can swap bottom and top parameters if you want y to go from top to bottom. make sure you render your polygons in the right order so that GL doesn't cull them or just call glDisable(GL_CULL_FACE).
Multi indexed rendering
What this means is that each vertex attribute (position, normal, etc) has its own index array. OpenGL (and Direct3D, for that matter) do not support this.
It is up to you the user to adjust your data format so that there is only one index array, which samples from multiple attribute arrays. To do this, you will need to duplicate some attribute data so that all of the attribute lists are the same size.
Quite often, this question is asked by those wanting to use the OBJ file format:
v 1.52284 39.3701 1.01523 v 36.7365 17.6068 1.01523 v 12.4045 17.6068 -32.475 and so on ... n 0.137265 0.985501 -0.0997287 n 0.894427 0.447214 -8.16501e-08 n 0.276393 0.447214 -0.850651 and so on ... t 0.6 1 t 0.5 0.647584 t 0.7 0.647584 and so on ... f 102/102/102 84/84/84 158/158/158 f 158/158/158 84/84/84 83/83/83 f 158/158/158 83/83/83 159/159/159 and so on ...
The lines that start with an f are the faces. As you can see, each vertex has 3 indices, one for vertex, normal, texcoord. In the example above, luckily the index for each {vertex, normal, texcoord} is identical but you will also encounter cases where they are not. You would have to expand such cases. Example :
f 1/1/1 2/2/2 3/2/2 f 5/5/5 6/6/6 3/4/5
so the group 3/2/2 and 3/4/5 are considered a difference vertex entirely even though they both access vertex 3.
You will need to do post-processing on OBJ files before you can use them.
See also
glClear and glScissor
glScissor is one of the few functions that effect on how glClear operates. If you want to clear only a region of the back buffer, then call glScissor and also glEnable(GL_SCISSOR_TEST).
Alternatively, if you have used the scissor test and forgot to glDisable(GL_SCISSOR_TEST), then you might wonder why glClear isn't working the way you want to.
Masking
Pay attention to glColorMask, glStencilMask and glDepthMask. For example, if you disable depth writes by calling glDepthMask(FALSE), then all calls to glClear will not clear the depth buffer.
glGetError (or "How do I check for GL errors?)
OpenGL keeps a set of error flags, and each call to glGetError()
tests and clears one of those flags. When there are no more error flags set, then glGetError()
returns GL_NO_ERROR
. So use a little helper function like this to check for GL errors:
#include <stdio.h> #include <GL/gl.h> #include <GL/glu.h> int checkForGLErrors( const char *s ) { int errors = 0 ; int counter = 0 ; while ( counter < 1000 ) { GLenum x = glGetError() ; if ( x == GL_NO_ERROR ) return errors ; fprintf( stderr, "%s: OpenGL error: %s [%08x]\n", s ? s : "", gluErrorString ( x ), errcnt++ ) ; errors++ ; counter++ ; } }
If there is no GL context, glGetError() would return an error code each time it is called since it is an error to call glGetError when there is no GL context. That is the reason why we have added counter < 1000.
What 3D file format should I use?
Newcomers often wonder what 3D file format, for their indices and vertices and texcoords and texture name, to use for their project.
GL doesn't offer any 3D file format because GL is just a low level library. You would either have to use someone else's library or write your own code. You have to decide whether to use an already existing file format or create your own. Newcomers don't want to reinvent the wheel but the fact is, in the games industry, it is very common to reinvent the wheel when it comes to 3D files.
In case you want to use an already existing format, the obj format is very popular because it is in ASCII text. This format is very limited. It is very old.
The 3ds format is also popular. There is even a open source library called lib3ds. It is old and limited. There is no official documentation from the company that created it.
DirectX has the x file format. It supports simple meshes and keyframes and multiple vertex attributes.
Some people use md2 (from Quake 2). md3 from Quake 3. BSP. POD. RAW. LWO. Milkshape. ASE. Some of them belong to the inventor (company) and you are not suppose to use them.
There is COLLADA which uses a XML style and it has become popular for content creators. This format can be read and exported by several 3D editors (example : Blender).
There are many other formats not mentioned here. They are described at http://www.wotsit.org
Memory Usage
It seems to be common to think that there is a memory leak in the OpenGL driver. Some users write simple programs such as this
glClear(...); SwapBuffers(...);
and they observe that their memory usage goes up each time their Display function is called. That is normal. The driver might allocate some memory space and since the driver is basically a black box, we don't know what it is doing. The driver might be doing some work at optimizing in a secondary thread or preparing some buffering area. We don't know what it is doing, but there is no memory leak.
Some users call glDeleteTextures or glDeleteLists or one of the other delete functions and they notice that memory usage doesn't go down. You can't do anything about it. The driver does its own memory management and it might choose not to deallocate for the time being. Therefore, this is not a memory leak either.
Memory Management
Who manages memory? How does OpenGL manage memory?
Graphics cards have limited memory, if you exceed it by allocating many buffer objects and textures and other GL resources, the driver can store some of it in system RAM. As you use those resources, the driver can swap in and out of VRAM resources as needed. Of course, this slows down rendering. The amount of RAM storage is also limited for the driver and it might return a GL_OUT_OF_MEMORY when you call glGetError(). It might even return a GL_OUT_OF_MEMORY if you have plenty of VRAM and RAM available and you try to allocate a really large buffer object that the driver doesn't like.
The purpose of this section is to answer those who want to know what happens when they allocate resources and the video card runs out of VRAM. This behavior is not documented in the GL specification because it doesn't concern itself with system resources and system design. System design can differ and GL tries to remain system neutral. Some systems don't have a video card. Some systems have an integrated CPU/GPU with shared RAM.