dandymcgee wrote:I'm trying to figure out how to make use of OpenGL's power properly through SDL. Keep in mind, the most I've ever done in OpenGL is made a rotating cube, and I didn't even understand portions of that simple code.
First question: glOrtho vs. gluPerspective - Would it be more beneficial in the long run to use gluPerspective with a 2D tile engine, or does an orthogonal view provide everything necessary to rotate, zoom, etc.?
Basis: I attempted to create a 2D quad and texture it, but upon rotating it (any angle) it would immediately disappear. Does this always happen or was I just doing it wrong?
Second question: When texturing should I load to an SDL_Surface then convert it to OpenGL format, or is there some way to load it directly?
I apologize for any ridiculous assumptions I may have made, but I'd like to try to avoid picking up any bad habits while I'm still clueless.

#1: glOrtho vs. gluPerspective - orthographic projection is the ideal for anything 2D. Perspective projection is just to make depth line up (at least, you don't need it when you don't need realistic-looking depth).
#2: the textured 2D quad rotation: are you redrawing it every frame? glRotate only rotates the matrix, not the objects in it. Also, how are you calling it? To draw a rotated 2D object, you'd do
Code: Select all
glRotatef([angle], 0.f, 0.f, 1.f); // rotate [angle] on the Z axis
// drawing code goes here
#3: You could load it into an SDL_Surface then pass surface->pixels to glTexImage2D, or load it directly into OGL using something like libpng. Personally, I'd use libpng to load it into an SDL_Surface, then optimize and pad (my crappy graphics card doesn't support newer versions of OGL, so it can really only use textures with power of 2 dimensions) the surface. After that, I'd pass the padded image's pixels to glTexImage2D and free the surfaces.
#4: ridiculous assumptions are fine. Though some may say otherwise, most of those people would also get angry at you for having bad habits. Some people just love to tick others off, I guess.
