OpenGL is a graphics standard and API which targets the desktop and workstation markets. It is designed to be easy to accelerate with dedicated computer hardware, and hence most implementations give greatly improved performance over traditional software rendering. OpenGL is used for applications like CAD software and computer games. It is also cross-platform. The OpenGL standard is controlled by the Khronos group, which also controls OpenGL ES.
129
votes
25answers
16k views
Learning game programming
Quick question: I've been in the web-dev world for several years now, I've wrapped my head around Java, Python, PHP, C# and Ruby- and currently make my living as a C#.NET programmer and I want to ...
107
votes
3answers
3k views
Once upon a time, when > was faster than < … Wait, what?
I am reading a wonderful OpenGL tutorial. It's unbelievably great, trust me. The topic I am currently at is Z-buffer. Aside from explaining what's it all about, the author mentions that we can perform ...
72
votes
16answers
3k views
How are 3D games so efficient?
There is something I have never understood. How can a great big PC game like GTA IV use 50% of my CPU and run at 60fps while a DX demo of a rotating Teapot @ 60fps uses a whopping 30% ?
Thanks
34
votes
13answers
4k views
Getting started with OpenGL
As you can see here I'm about to start work on a 3d project for class.
Do you have any useful resources/websites/tips/etc. on someone getting started with OpenGL for the first time? The project will ...
32
votes
8answers
21k views
Using OpenGl with C#?
Is there free OpenGL support libraries for C#? If so, which one do I use and where do I find sample projects ?
EDIT #1
Does C# provide classes for OpenGL ?
Thanks
32
votes
25answers
5k views
Suggested gaming platform to learn - Direct X (C++), Open GL or XNA
My nephew is an aspiring game developer. I have taught him a bit of C/C++, and suggested he learn that for a start.
Once he has come to grips with that, which game/graphics API's do people suggest he ...
27
votes
2answers
734 views
Pygame water ripple effect
I have Googled for it but there are no ready scripts - as opposed to the same effect on Flash. I have checked the algorithm on The Water Effect Explained and also tested an implementation of the ...
27
votes
1answer
492 views
glDrawArray() gives a memory exception
While looping through all objects I want to render in my 3D-engine, I get an error when trying to call
glDrawArrays(mesh->primitiveType, 0, mesh->vertexCount);
Because it tries to read from ...
26
votes
10answers
4k views
What's a good book for learning OpenGL? [closed]
What's a good book for learning OpenGL programming?
25
votes
5answers
2k views
Why does OpenGL use degrees instead of radians?
The OpenGL designers were never afraid of mathematics, and knowledge of linear algebra is essential for all but the simplest OpenGL applications. I think it can safely be assumed that OpenGL ...
25
votes
2answers
17k views
How do you render primitives as wireframes in OpenGL?
How do you render primitives as wireframes in OpenGL?
24
votes
9answers
5k views
OpenGL 4.x learning resources
I know there are some question about learning OpenGL.
The difference is that I want to learn OpenGL 4.0 Core profile (no immediate functions). Preferably with good portion of SL knowledge.
And I do ...
23
votes
1answer
294 views
Visualising 4D objects in OpenGL
Do you know of any, actively developed, C/C++ library that can take a bunch (preferably a large amount) of 4D vertices, project them back into 3D space with respect to some arbitrary "4D camera" ...
23
votes
4answers
10k views
What does glLoadIdentity() do in OpenGL?
I'm new to OpenGL and I'm a little overwhelmed with all of the random functions that I have my in code. They work and I know when to use them, but I don't know why I need them or what they actually ...
21
votes
9answers
15k views
What is the best free cross-platform OpenGL GUI library for a video game?
It must come with source. I've looked at these which look semi-promising:
glgooey, guichan, and cegui. I've come across others that look more Windows-y than game-y, but that's not the direction I am ...
20
votes
4answers
2k views
What is state-of-the-art for text rendering in OpenGL as of version 4.1?
There are already a number of questions about text rendering in OpenGL, such as:
OpenGL live text-rendering
But mostly what is discussed is rendering textured quads using the fixed-function ...
20
votes
6answers
5k views
opengl: glFlush() vs. glFinish()
I'm having trouble distinguishing the practical difference between calling glFlush() and glFinish().
The docs say that glFlush() and glFinish() will push all buffered operations to opengl so that one ...
19
votes
1answer
594 views
Mixing Quartz and OpenGL?
I am trying to find out what actually happens in background when we do this (please see the image)
As you can see in image I have added few buttons and have checked Content View from Interface ...
17
votes
5answers
343 views
OpenGL, How to create a “bumpy Polygon”?
I am unsure of how to describe what I'm after, so I drew a picture to help:
My question, is it possible within OpenGL to create the illusion of those pixel looking bumps on a single polygon, ...
17
votes
3answers
515 views
How to join overlapping circles?
I want to visually join two circles that are overlapping so that
becomes
I already have methods for partial circles, but now I need to know how large the overlapping angle for earch circle is, ...
17
votes
8answers
5k views
OpenGL still better than Direct3D for non-games?
The standard model has been that OpenGL is for professional apps (CAD) and Direct3D is for games.
With the debacle of openGL 3.0, is openGl still the natural choice for technical 3D apps (cad/GIS)?
...
16
votes
6answers
4k views
(win32) How to make an OpenGL rendering context with transparent background?
Rendering contexts usually have a solid color on the background (black or whatever, see the image below):
I'm wondering if it's possible to setup a window, with no decorations AND with the ...
16
votes
5answers
6k views
Displaying SVG in OpenGL without intermediate raster
I have some simple SVG artwork (icon and glyph kind of things) which I want to display in an OpenGL app (developing in C++ on Debian, using Qt).
The obvious solution is to use the ImageMagick libs to ...
15
votes
4answers
136 views
Why are quaternions used for rotations?
I'm a physicist, and have been learning some programming, and have come across a lot of people using quaternions for rotations instead of writing things in matrix/vector form.
In physics, there are ...
15
votes
3answers
3k views
Vertex shader attribute mapping in GLSL
I'm coding a small rendering engine with GLSL shaders:
Each Mesh (well, submesh) has a number of vertex streams (eg. position,normal,texture,tangent,etc) into one big VBO and a MaterialID.
Each ...
15
votes
6answers
4k views
What are some best practices for OpenGL coding (esp. w.r.t. object orientation)?
This semester, I took a course in computer graphics at my University. At the moment, we're starting to get into some of the more advanced stuff like heightmaps, averaging normals, tesselation etc.
I ...
14
votes
1answer
315 views
SDL OpenlGL Alt-tab in fullscreen has unpredictable results
I am writing a game in C++ using SDL 1.2.14 and the OpenGL bindings included with it.
However, if the game is in fullscreen and I Alt-Tab out then back into the game, the results are unpredictable. ...
14
votes
1answer
122 views
What happens during a display mode change?
What happens during a display mode change (resolution, depth) on an ordinary computer? (classical stationarys and laptops)
It might not be so trivial since video cards are so different, but one thing ...
14
votes
2answers
1k views
Rendering SVG with OpenGL (and OpenGL ES)
I am currently investigating the possibility of rendering vector graphics from an SVG file using OpenGL and OpenGL ES. I intend to target Windows and Android. My ideal solution would be to have a ...
14
votes
2answers
602 views
What is a good code structure for api-independant vertex processing?
Currently working on a 3D media engine using C# and I have come across a little conundrum. I have my rending loop figured out, I got a great plug-in architecture and content management system and even ...
14
votes
4answers
3k views
Is GLUT dead?
After reading a discussion on Ubuntu Forums concerning GLUT vs. FreeGLUT.
Is GLUT dead for graphics programming? Is SDL all the rage now for OpenGL programming?
13
votes
4answers
579 views
How does OpenGL work at the lowest level? [closed]
I understand how to write OpenGL/DirectX programs, and I know the maths and the conceptual stuff behind it, but I'm curious how the GPU-CPU communication works on a low level.
Say I've got an OpenGL ...
13
votes
1answer
1k views
What's a good C++ library for loading models for use in OpenGL?
I tried making my own .obj loader, but it didn't go as smoothly as I had hoped, and there is probably other libraries out there that do it more efficiently than I could.
So can anyone recommend a ...
13
votes
5answers
2k views
Which OpenGL functions are not GPU-accelerated?
I was shocked when I read this (from the OpenGL wiki):
glTranslate, glRotate, glScale
Are these hardware accelerated?
No, there are no known GPUs that
execute this. The driver computes ...
13
votes
8answers
3k views
How do I render thick 2D lines as polygons?
I have a path made up of a list of 2D points. I want to turn these into a strip of triangles in order to render a textured line with a specified thickness (and other such things). So essentially the ...
13
votes
4answers
4k views
Most Common 3D Model Format?
It's been about two years since I last developed games, and I am interested in starting a new project. What is the most common open-source 3D model format?
I am looking for a format that would ...
13
votes
16answers
3k views
Simple 3D graphics project?
I'm looking for some good ideas for a simple 3d graphics program as my final project for an intro to computer graphics class. As for some background information, we'll be using opengl and will have a ...
12
votes
6answers
14k views
Learning OpenGL in Ubuntu
I'm trying to learn OpenGL and improve my C++ skills by going through the Nehe guides, but all of the examples are for Windows and I'm currently on Linux. I don't really have any idea how to get ...
12
votes
4answers
4k views
What is the best way to debug OpenGL?
I find that a lot of the time, OpenGL will show you it failed by not drawing anything. I'm trying to find ways to debug OpenGL programs, by inspecting the transformation matrix stack and so on. What ...
12
votes
2answers
4k views
What's “in” and “out” of OpenGL-ES? (Porting from OpenGL)
It seems that all of the documentation I can find about OpenGL-ES says something to the effect of "OpenGL-ES is just like OpenGL, but without a lot of stuff. For example, there's no glBegin or ...
12
votes
6answers
4k views
What is the best OpenGL java binding?
I am trying to achieve better performance for my Java SWT application, and I just found out it is possible to use OpenGL in SWT. It seems there are more than one Java binding for OpenGL. Which one do ...
11
votes
4answers
575 views
Is COLLADA a dead format?
I've been reading lots of musings on the net that COLLADA is a dead file format? In that applications are not updating their support for it etc. Is this true? It was originally designed to be a format ...
11
votes
7answers
1k views
How do I make a 3D game in my spare time?
I'm looking for a new project to fill the evenings and I wish to make a 3d game.
I have mediocre experience in Pascal,and VB but realise that neither of these may be best for the job.
I realize I may ...
11
votes
7answers
891 views
Any Games Engine for Delphi?
I want to create a game in Delphi
Is there any good game engine for Delphi?
based on directx 10 or OpenGL?
I need it for 3D games, or only I can do that with C++?
11
votes
4answers
3k views
Easy framework for OpenGL Shaders in C/C++
I just wanted to try out some shaders on a flat image. Turns out that writing a C program, which just takes a picture as a texture and applies, let's say a gaussian blur, as a fragment shader on it is ...
11
votes
3answers
4k views
How to debug a GLSL shader?
I need to debug a GLSL program but I don't know how to output intermediate result.
Is it possible to make some debug traces (like with printf) with GLSL ?
11
votes
5answers
417 views
Basic C++ memory question
a friend of mine declared a new type using
typedef GLfloat vec3_t[3];
and later used vec3_t to allocate memory
vertices=new vec3_t[num_xyz* num_frames];
He freed the memory using
delete [] ...
11
votes
7answers
8k views
Initializing OpenGL without GLUT
every introduction and sample that I can find seems to use GLUT or some other framework to "initialize" OpenGL. Is there a way of initializing OpenGL with just what is available in GL and GLU? If ...
11
votes
5answers
5k views
How to achieve full-scene antialiasing on the iPhone
I would like to achieve FSAA on my OpenGL ES app on the iPhone.
Currently I do this by rendering the scene to a texture that is twice the width and height of the screen. I then use the nice function:
...
11
votes
2answers
6k views
Best OpenGL wrapper for Mono and .Net? [closed]
This is a follow up to another question.
What is the best OpenGL wrapper usable both under Linux and Windows, with Mono (or .Net)?
I have already evaluated Tao Framework, but I am unimpressed by how ...