The sdl2 tag has no wiki summary.
-2
votes
0answers
23 views
What is The Best Way To Learn SDL2? [on hold]
I Want to learn SDL2, i have downloaded a book "SDL Game Development", but i found it more advanced (using abstract classes too much), then there's LazyFoo tutorials, but they didn't use much OOP in ...
1
vote
1answer
102 views
How to detect graphics API at runtime with SDL2?
Using SDL2, is there a way to determine at runtime whether the application is using OpenGL, OpenGLES, or DirectX?
EDIT: If there is a way to figure it out without using the SDL2 API, I'm willing to ...
0
votes
2answers
45 views
Why can't I load an image with a relative path in SDL2 on Linux?
When loading a texture in SDL2 the general procedure is this:
SDL_Texture* texture = IMG_LoadTexture(renderer, "resources/images/image.png);
However this doesn't work and I have to supply the WHOLE ...