Is there a book which covers how to make a 3D software rendering engine from the bottom up (starting with simple pixel plotting), without DirectX and the like?

link|improve this question

78% accept rate
feedback

3 Answers

alt text

http://www.amazon.com/Computer-Graphics-Principles-Practice-2nd/dp/0201848406

link|improve this answer
ahhh! good memories of yesteryear. – Max Jan 18 '11 at 18:59
@Max - yes but if you want to know the basics, then how to do something in this week's DirectX or OpenGL isn't necessarily the best approach. – Martin Beckett Jan 18 '11 at 19:25
feedback

I am sure there are newer books, but if I remember correctly, "Flights of Fantasy - Programming 3-D Video Games in C++" had a fairly complete implementation of a 3-D engine.

link|improve this answer
feedback

While not strictly a book, I would recommend reading the DOOM and Quake 1 source code. Many of their techniques at the rasterization level are dated optimizations that no longer apply (and are often counter-productive) on modern hardware, but a lot of the higher-level stuff like hidden surface removal, drawing order, and data structures are still very relevant, and these games were the pioneers in the field.

Another under-appreciated technique for drawing order/hidden surface removal is recursion through convex spaces connected via "portals", clipping (in both 3d and 2d) drawing of the recursed-into region by the bounds of the portal you entered it by. Personally I believe this is optimal (scales optimally to huge worlds), and this technique is applicable to accelerated 3d as well. I believe Descent 1 used this method, and the source to that is available too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.