aboutsummaryrefslogtreecommitdiffstats
path: root/src/sdl.erl
AgeCommit message (Collapse)Author
2018-01-02Welcome to 2018Loïc Hoguin
2015-10-21Add sdl_hints:add_callback/3 functionLoïc Hoguin
This also sets up esdl2 to start accepting callbacks. The module/process esdl2_callbacks must always be running for that purpose, so esdl2 was made an OTP application instead of a simple library. Implementation of the rest of SDL_hints will follow in subsequent commits.
2015-10-20Implement sdl:which_subsystems/0Loïc Hoguin
2015-10-20We are in 2015Loïc Hoguin
2015-10-18Remove access to the SDL_INIT_NOPARACHUTE optionLoïc Hoguin
It is ignored by SDL2 and only kept for compatibility purposes. We don't need to worry about that, so removing it.
2014-04-08Add typespecs to the sdl moduleLoïc Hoguin
2014-04-08Make the sdl module C code use the main threadLoïc Hoguin
All video operations should be on the main thread, including initialization. This makes no difference on my system, but might on others. There is no cost doing this as these functions are very rarely called, and usually before/after everything else.
2014-03-18Initial commitLoïc Hoguin