User profile: BlackSheep

User info
User name:BlackSheep
History
Joined:
Number of posts:424
Latest posts:

Knight's tour using recursion and backtracking
You made q static. It gets initialized once, when traceKnightTour is called for the first time, and ...

Is sfml/sdl worth a try or should i go with an engine?
I'd say so. It's basically just convenient wrappers around all the OpenGL stuff.

Is sfml/sdl worth a try or should i go with an engine?
Use SFML. Easy to use, understand and great documentation. Also has a lot of flexibility, for exampl...

What all can you do with shaders in OpenGL?
@Disch Glad to see that openGL guide is still spreading, seriously one of the best tutorials I've ev...

How to exit an iteration (for loop)
You can use the [code]continue;[/code] keyword. Just be careful with its use as it can cause many in...