Pole Position like in C

Started by
3 comments, last by taoufikallah 11 years, 9 months ago
I need to know if I can do something like this with SDL or I need to use opengl.
My concern is the road, how do I make a road like this?



Thank you!
Advertisement
The game was made with scaling sprites.
It is not 3d at all, but it seems to

SDL doesn't provide scaling functionality, but there is an aditional library like SDL_gfx for scaling sprites.
I see, SDL_gfx, I already used some function of this library. can you point me where I can learn this scaling stuff, please?
Thank you :)
Create you own examples and experiment with it.

For example, load an image, blit it, and scale it with gfx library using an user input.

Old tutorial:
http://aaroncox.net/.../sdlshapes.html

Documentation:
http://www.ferzkopp....html/files.html

I think you will need "rotozoom" in the gfx library for the scaling so:
Rotozoom documentation:
http://www.ferzkopp....otozoom_8h.html
Thank you for all the help, I appreciate it.

This topic is closed to new replies.

Advertisement