1
vote
4answers
130 views
What 3D graphics framework should I use for a real world game engine.
Hello, I'm a C++ programmer with very extensive server programming experience. I'm however fairly bored at the moment and I decided to tackle a new area: 3D game programming, for l …
1
vote
3answers
59 views
Can I interpolate rotation from two Quaternions created from Yaw/Pitch/roll?
Quaternions are good for interpolate rotations between them. so far so good.
If I have a networking game, will it suffice to transfer the rotation as vector3f or should I use a qu …
1
vote
1answer
49 views
Can I do openGL geometry batching without transforming all the vertices by hand?
I've been trying to set up some sort of geometry batching for a week or so, there isn't a ton of information online as to how other people have implemented this. Basically I just …
1
vote
5answers
106 views
Setting up a camera in OpenGL
I've been working on a game engine for awhile. I've started out with 2D Graphics with just SDL but I've slowly been moving towards 3D capabilities by using OpenGL. Most of the do …
0
votes
1answer
45 views
Basic Open GL/GLUT Issue
I am studying graphics and currently using OpenGL with GLUT. Doing my editing in codeblocks and using an online tutorial located at lighthouse3d. I am using the main method declare …
0
votes
1answer
70 views
How to rotate object around local axis in OpenGL?
I apologize for this rather long question.
I am working on an ongoing project where I want to align the links of a chain so that it follows the contours of a Bezier curve. I am cu …
0
votes
3answers
107 views
How do I use a pointer as an offset?
This issue originally came up in a related question of mine where I was having trouble reading some bit of code. The answer turned out to be that this line
&((GLushort *)0)[ …
1
vote
2answers
49 views
How can I specify per-face colors when using indexed vertex arrays in OpenGL 3.x?
I'm trying to render a cube using an array of 8 vertices and an index-array of 24 (4*6) indices into the vertex array. But how can I specify per-face variables, like colors and nor …
0
votes
1answer
19 views
How do you handle multiple textures in an OpenGL indexed buffer array for use with a data-shader?
I'm attempting to implement this paper. I've have most of it down, but the part about sending arbitrary, non-geometric data to the shader for use in determining and displaying geom …
2
votes
2answers
56 views
Texture atlas software
What is a good tool to make texture atlases with? I have a 2d game and I am going to need to shove a bunch of small textures into a bigger one for performance reasons. I know of …
0
votes
2answers
62 views
Display List generation
I'm developing an application which make use of display lists offered by OpenGL. My idea is to call display lists for a repeatitive tasks, such as tranformations and server state s …
3
votes
4answers
128 views
Help me evaluate this casting
I found this in the PowerVR mesh drawing code and I don't really know how to read it.
&((unsigned short*)0)[3 * mesh.sBoneBatches.pnBatchOffset[batchNum]]
What is going on h …
0
votes
2answers
43 views
Using axis and angle of rotation in glrotate
I followed the question here http://stackoverflow.com/questions/764313/quaternion-math-for-rotation to get an angle of rotation and the axis around which I need to rotate, My quest …
0
votes
4answers
91 views
SDL GL program terminates immediately
I'm using Dev-C++ 4.9.9.2 (don't ask why) and SDL 1.2.8.
Next I've created new project: SDL&GL. This project contains already some code:
#include <SDL/SDL.h>
#include & …
1
vote
3answers
80 views
How to load PNG with alpha with Cocoa?
Hey guys,
I'm developing an iPhone OpenGL application, and I need to use some textures with transparency. I have saved the images as PNGs. I already have all the code to load PN …
