0
votes
0answers
32 views

How do I initialize audio to use DUMB with SDL?

Am I able to just call SDL_Init(SDL_INIT_AUDIO); to initialize the audio and DUMB is good to go, or do I have to set the SDL_AudioSpec parameters and call SDL_OpenAudio(parameter1,parameter2);? ...
0
votes
2answers
430 views

Is there an alternative to SDL 1.3 for a C++ game that should run on iOS and Android?

I've used SDL for many desktop games, always as the cross-platform glue for: Creating a window Processing input Rendering images Rendering fonts Playing sounds/music It has never disappointed me ...
0
votes
1answer
449 views

How do I install SDL.NET in Visual Studio 2010? (Or any other .NET library)

I'm trying to get SDL.NET to work in Visual Studio 2010, but am really not sure how to go about installing the library (or creating a custom project or something), and any basic instructions would be ...
0
votes
2answers
494 views

What graphics library should I use for line rendering for a raycasting renderer?

I want to develop simple RPG with ray casting rendering. I chose SDL for graphics and input. The problem is there is no native line drawing in it, which I need to start prototyping a ray casting ...