Bringing SDL to OpenGL
I've been using SDL for a game that I'm working on, but due to the complexity that it's taking on SDL is no longer viable. (or fast enough)
Are using OpenGL's pixel operations faster (or easier) than using textured quads for drawing in 2D? I have a basic understanding of how to do it either way, but am trying to decide what path to research.
Are using OpenGL's pixel operations faster (or easier) than using textured quads for drawing in 2D? I have a basic understanding of how to do it either way, but am trying to decide what path to research.
Scott Lembcke - Howling Moon Software
Author of Chipmunk Physics - A fast and simple rigid body physics library in C.
Textured quads are the fastest way to get things onto the screen, not least because the textures can be stored in video memory.
Well that settles it. I was under the impression that you could do pixel operations in video memory.
Scott Lembcke - Howling Moon Software
Author of Chipmunk Physics - A fast and simple rigid body physics library in C.

