SDL-emscripten icon indicating copy to clipboard operation
SDL-emscripten copied to clipboard

SDL2 emscripten port

Results 9 SDL-emscripten issues
Sort by recently updated
recently updated
newest added

I just tried using this library instead of Emscripten's SDL with [my DOSBox port](https://github.com/dreamlayers/em-dosbox/tree/em-dosbox-svn-sdl2). Red and blue colours were swapped in Firefox 34 and Chrome 39 due to the masks...

Both standard createImageData() and CanvasPixelArray order bytes as red, green, blue, alpha. Emscripten is little endian, and the the order of characters in SDL_PIXELFORMAT_ defines refers to most to least...

Can someone verify that SDL_rwops is broken for subdirs? I can't get my game to load files from subdirs. It's available on github, too https://github.com/mgerhardy/caveexpress compiling on linux: make emscripten-setup...

The page https://github.com/gsathya/SDL-emscripten/wiki/Ported-subsystems lists all the current subsystems and their port status. To give a more precise overview for people doing a port, let's expand this page to contain a...

Full screen needs to be requested on a user input action. library_sdl.js currently fakes it by checking on every keypress/mousemove to see if there is a need to go full...

Building with cmake fails to build any video devices (see below). This means SDL_Init(SDL_INIT_VIDEO) fails with "No video device available". When listing them only dummy shows up. This is confirmed...

To be able to integrate the SDL2 tests to Emscripten build system, we need to develop a script that, similar to how Emscripten test runner works, goes through all tests...

We should make sure that the CMake path of configuring SDL2 to build is well supported, since that is the only clean native way on Windows to build. In Windows,...

It looks like the file include/sdl_config.h ( https://github.com/gsathya/SDL-emscripten/commits/master/include/SDL_config.h ) is automatically generated by the configure system, and reconfiguring the build can rewrite its contents. Should this file exist at all...