Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Getting started with OpenGL

I'm ready to start programming some 2D/3D game. (2D/3D, i know they're completly different) I need a guide to start programming 2D and/or 3D games in OpenGL 4.1.

EDIT: C++ programming / Win32

share|improve this question
3  
I hope you realize that OpenGL is neither a rendering nor game engine, but a graphics API. If you're looking to learn OpenGL you might want to have a look at this: stackoverflow.com/questions/239917/getting-started-with-opengl – Bart Jun 25 '11 at 3:21
stackoverflow.com/questions/239917/getting-started-with-opengl can someone close it? – fazo Jun 25 '11 at 3:22

marked as duplicate by Martin Beckett, jonsca, genpfault, Mat, Bo Persson Jun 25 '11 at 6:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

The question you need to ask yourself is this: are you making a rendering application, or are you making a game?

If you're making a 3D rendering application, then learning OpenGL is useful. If you are making a game, focus on what matters: your gameplay. Pick up Ogre3D or some other rendering system, or pick up an already-made game engine. Get yourself to the actual game part of your game ASAP. Skip over the minutae of exactly how everything gets rendered and make your game.

share|improve this answer

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