0
votes
4answers
38 views
Starting OpenGL Programming “Ultimate” Resource
So I have a class for OpenGL programming next term.
I would at least like to have my feet (maybe even my ankles!) wet in the OpenGL pool before the class starts.
I am looking for …
0
votes
0answers
17 views
Cocoa application crashing on OpenGL call
I made a new project and pretty much copied this guide, but whenever I call any OpenGL function it the spot marked // Drawing code here it crashes. I have this there:
glViewport(0 …
2
votes
0answers
14 views
OpenGL AntiAliasing and Background Quad
I'm drawing a background behind my 3D scene which works as expected (code below). I'm also anti-aliasing the scene using the accumulation buffer (chapter 10 of the red book).
... …
0
votes
2answers
40 views
OpenGL 3D Selection Question
I am trying to create a 3D robot that should perform certain actions when certain body parts are clicked. I have successfully (sort of) implemented picking in that if you click on …
1
vote
3answers
126 views
the quake 2 md2 file format (theory)
i am trying to load md2 files in opengl but i noticed that most example programs just use a
precompiled list of normals. something like this.....
//table of precalculated nor …
1
vote
1answer
41 views
+100
Convert Flash art to OpenGL-ready vector format?
Say I have some 2D artwork in Flash CS4 format .FLAs, and I'd like to put it into an iPhone game that uses OpenGL ES, keeping it in vector format. An OpenGL-ready format could just …
0
votes
0answers
20 views
openGL position and orientation from modelview matrix
Hello!
My problem is the following:
I have nested object in my opengl scene, and i only know their relative position and orientation.
How do I get the absolute position and orie …
0
votes
4answers
64 views
Game programming book using OpenGL and DirectX
What is in your opinion the best game programming book using OpenGL and DirectX?
0
votes
2answers
30 views
How do I fixate a light source in OpenGL while rotating an object?
I have a glutSolidTeapot (which has its surface normals generated automatically according to opengl.org) and a light source which is emitting diffuse light. The problem comes when …
0
votes
1answer
22 views
Using GL_SHORT instead of GL_FLOAT in an OpenGL ES vertex array
I have this vertex array of a cube
float vertex_coordinates [] = {
-12.43796, -12.43796, 12.43796, -12.43796, 12.43796, 12.43796, 12.43796, 12.43796, 12.43796,
12.43796, 12.43796 …
1
vote
1answer
27 views
CVDisplayLink instead of NSTimer
I have started to implement cvDisplayLink to drive the render loop instead of nstimer, as detailed in this technical note http://developer.apple.com/mac/library/qa/qa2004/qa1385.ht …
0
votes
2answers
37 views
Mac dev - Help getting started with 2d games
I want to make some simple 2d games/clones (for Mac), but I have a few questions:
Should I use Quartz 2d or OpenGL (I don't plan to try 3d anytime soon)
There seems to be a lot o …
1
vote
1answer
47 views
OpenGL window cleared with no WM_PAINT message
I have an application with three MDI windows, all of them showing OpenGL content. On XP, everything works fine. But on Vista/Win7 the mdi child windows don't refresh properly.
Aft …
0
votes
2answers
27 views
GLPaint with white background
I'm completely new to OpenGL, and I'm trying draw on a white background by reverse engineering GLPaint. I've gone through every combination of kSaturation, kLuminosity and glBlendF …
0
votes
3answers
55 views
OpenGL ES - how to keep some object at a fixed size?
I'm working on a little game in OpenGL ES.
In the background, there is a world/map. The map is just a large texture.
Zoom/pinch/pan is used to move around. And I'm using glOrthof …
