├── assets ├── FSEX300.ttf ├── ascii_10x10.png ├── img1.png ├── img1a.png ├── img2.png └── tack.wav ├── ex103_events ├── ex103_events.nim ├── index.html ├── index.html.mem └── index.js ├── ex201_textures ├── ex201_textures.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex202_transformations ├── ex202_transformations.nim ├── index.data ├── index.html └── index.html.mem ├── ex203_blending ├── ex203_blending.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex204_drawing ├── ex204_drawing.nim ├── index.html ├── index.html.mem └── index.js ├── ex205_sdl_gfx_primitives ├── ex205_sdl_gfx_primitives.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex206_bitmap_fonts ├── ex206_bitmap_fonts.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex207_ttf_fonts ├── ex207_ttf_fonts.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex208_framerate ├── ex208_framerate.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex209_viewports_and_scaling ├── ex209_viewports_and_scaling.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex210_pixels ├── ex210_pixels.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex301_keyboard ├── ex301_keyboard.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex302_mouse ├── ex302_mouse.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex401_mixer ├── ex401_mixer.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── ex402_panning ├── ex402_panning.nim ├── index.data ├── index.html ├── index.html.mem └── index.js ├── libSDL2_gfx.o ├── libSDL2_image-png.o ├── libSDL2_ttf.o ├── nim.cfg ├── readme.md ├── sdl.nim └── wasm_ex208_framerate ├── ex208_framerate.nim ├── index.data ├── index.html ├── index.js └── index.wasm /assets/FSEX300.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/FSEX300.ttf -------------------------------------------------------------------------------- /assets/ascii_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/ascii_10x10.png -------------------------------------------------------------------------------- /assets/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/img1.png -------------------------------------------------------------------------------- /assets/img1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/img1a.png -------------------------------------------------------------------------------- /assets/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/img2.png -------------------------------------------------------------------------------- /assets/tack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/assets/tack.wav -------------------------------------------------------------------------------- /ex103_events/ex103_events.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex103_events/ex103_events.nim -------------------------------------------------------------------------------- /ex103_events/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex103_events/index.html -------------------------------------------------------------------------------- /ex103_events/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex103_events/index.html.mem -------------------------------------------------------------------------------- /ex103_events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex103_events/index.js -------------------------------------------------------------------------------- /ex201_textures/ex201_textures.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex201_textures/ex201_textures.nim -------------------------------------------------------------------------------- /ex201_textures/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex201_textures/index.data -------------------------------------------------------------------------------- /ex201_textures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex201_textures/index.html -------------------------------------------------------------------------------- /ex201_textures/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex201_textures/index.html.mem -------------------------------------------------------------------------------- /ex201_textures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex201_textures/index.js -------------------------------------------------------------------------------- /ex202_transformations/ex202_transformations.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex202_transformations/ex202_transformations.nim -------------------------------------------------------------------------------- /ex202_transformations/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex202_transformations/index.data -------------------------------------------------------------------------------- /ex202_transformations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex202_transformations/index.html -------------------------------------------------------------------------------- /ex202_transformations/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex202_transformations/index.html.mem -------------------------------------------------------------------------------- /ex203_blending/ex203_blending.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex203_blending/ex203_blending.nim -------------------------------------------------------------------------------- /ex203_blending/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex203_blending/index.data -------------------------------------------------------------------------------- /ex203_blending/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex203_blending/index.html -------------------------------------------------------------------------------- /ex203_blending/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex203_blending/index.html.mem -------------------------------------------------------------------------------- /ex203_blending/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex203_blending/index.js -------------------------------------------------------------------------------- /ex204_drawing/ex204_drawing.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex204_drawing/ex204_drawing.nim -------------------------------------------------------------------------------- /ex204_drawing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex204_drawing/index.html -------------------------------------------------------------------------------- /ex204_drawing/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex204_drawing/index.html.mem -------------------------------------------------------------------------------- /ex204_drawing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex204_drawing/index.js -------------------------------------------------------------------------------- /ex205_sdl_gfx_primitives/ex205_sdl_gfx_primitives.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex205_sdl_gfx_primitives/ex205_sdl_gfx_primitives.nim -------------------------------------------------------------------------------- /ex205_sdl_gfx_primitives/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex205_sdl_gfx_primitives/index.data -------------------------------------------------------------------------------- /ex205_sdl_gfx_primitives/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex205_sdl_gfx_primitives/index.html -------------------------------------------------------------------------------- /ex205_sdl_gfx_primitives/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex205_sdl_gfx_primitives/index.html.mem -------------------------------------------------------------------------------- /ex205_sdl_gfx_primitives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex205_sdl_gfx_primitives/index.js -------------------------------------------------------------------------------- /ex206_bitmap_fonts/ex206_bitmap_fonts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex206_bitmap_fonts/ex206_bitmap_fonts.nim -------------------------------------------------------------------------------- /ex206_bitmap_fonts/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex206_bitmap_fonts/index.data -------------------------------------------------------------------------------- /ex206_bitmap_fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex206_bitmap_fonts/index.html -------------------------------------------------------------------------------- /ex206_bitmap_fonts/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex206_bitmap_fonts/index.html.mem -------------------------------------------------------------------------------- /ex206_bitmap_fonts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex206_bitmap_fonts/index.js -------------------------------------------------------------------------------- /ex207_ttf_fonts/ex207_ttf_fonts.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex207_ttf_fonts/ex207_ttf_fonts.nim -------------------------------------------------------------------------------- /ex207_ttf_fonts/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex207_ttf_fonts/index.data -------------------------------------------------------------------------------- /ex207_ttf_fonts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex207_ttf_fonts/index.html -------------------------------------------------------------------------------- /ex207_ttf_fonts/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex207_ttf_fonts/index.html.mem -------------------------------------------------------------------------------- /ex207_ttf_fonts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex207_ttf_fonts/index.js -------------------------------------------------------------------------------- /ex208_framerate/ex208_framerate.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex208_framerate/ex208_framerate.nim -------------------------------------------------------------------------------- /ex208_framerate/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex208_framerate/index.data -------------------------------------------------------------------------------- /ex208_framerate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex208_framerate/index.html -------------------------------------------------------------------------------- /ex208_framerate/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex208_framerate/index.html.mem -------------------------------------------------------------------------------- /ex208_framerate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex208_framerate/index.js -------------------------------------------------------------------------------- /ex209_viewports_and_scaling/ex209_viewports_and_scaling.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex209_viewports_and_scaling/ex209_viewports_and_scaling.nim -------------------------------------------------------------------------------- /ex209_viewports_and_scaling/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex209_viewports_and_scaling/index.data -------------------------------------------------------------------------------- /ex209_viewports_and_scaling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex209_viewports_and_scaling/index.html -------------------------------------------------------------------------------- /ex209_viewports_and_scaling/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex209_viewports_and_scaling/index.html.mem -------------------------------------------------------------------------------- /ex209_viewports_and_scaling/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex209_viewports_and_scaling/index.js -------------------------------------------------------------------------------- /ex210_pixels/ex210_pixels.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex210_pixels/ex210_pixels.nim -------------------------------------------------------------------------------- /ex210_pixels/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex210_pixels/index.data -------------------------------------------------------------------------------- /ex210_pixels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex210_pixels/index.html -------------------------------------------------------------------------------- /ex210_pixels/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex210_pixels/index.html.mem -------------------------------------------------------------------------------- /ex210_pixels/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex210_pixels/index.js -------------------------------------------------------------------------------- /ex301_keyboard/ex301_keyboard.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex301_keyboard/ex301_keyboard.nim -------------------------------------------------------------------------------- /ex301_keyboard/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex301_keyboard/index.data -------------------------------------------------------------------------------- /ex301_keyboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex301_keyboard/index.html -------------------------------------------------------------------------------- /ex301_keyboard/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex301_keyboard/index.html.mem -------------------------------------------------------------------------------- /ex301_keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex301_keyboard/index.js -------------------------------------------------------------------------------- /ex302_mouse/ex302_mouse.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex302_mouse/ex302_mouse.nim -------------------------------------------------------------------------------- /ex302_mouse/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex302_mouse/index.data -------------------------------------------------------------------------------- /ex302_mouse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex302_mouse/index.html -------------------------------------------------------------------------------- /ex302_mouse/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex302_mouse/index.html.mem -------------------------------------------------------------------------------- /ex302_mouse/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex302_mouse/index.js -------------------------------------------------------------------------------- /ex401_mixer/ex401_mixer.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex401_mixer/ex401_mixer.nim -------------------------------------------------------------------------------- /ex401_mixer/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex401_mixer/index.data -------------------------------------------------------------------------------- /ex401_mixer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex401_mixer/index.html -------------------------------------------------------------------------------- /ex401_mixer/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex401_mixer/index.html.mem -------------------------------------------------------------------------------- /ex401_mixer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex401_mixer/index.js -------------------------------------------------------------------------------- /ex402_panning/ex402_panning.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex402_panning/ex402_panning.nim -------------------------------------------------------------------------------- /ex402_panning/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex402_panning/index.data -------------------------------------------------------------------------------- /ex402_panning/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex402_panning/index.html -------------------------------------------------------------------------------- /ex402_panning/index.html.mem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex402_panning/index.html.mem -------------------------------------------------------------------------------- /ex402_panning/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/ex402_panning/index.js -------------------------------------------------------------------------------- /libSDL2_gfx.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/libSDL2_gfx.o -------------------------------------------------------------------------------- /libSDL2_image-png.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/libSDL2_image-png.o -------------------------------------------------------------------------------- /libSDL2_ttf.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/libSDL2_ttf.o -------------------------------------------------------------------------------- /nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/nim.cfg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/readme.md -------------------------------------------------------------------------------- /sdl.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/sdl.nim -------------------------------------------------------------------------------- /wasm_ex208_framerate/ex208_framerate.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/wasm_ex208_framerate/ex208_framerate.nim -------------------------------------------------------------------------------- /wasm_ex208_framerate/index.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/wasm_ex208_framerate/index.data -------------------------------------------------------------------------------- /wasm_ex208_framerate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/wasm_ex208_framerate/index.html -------------------------------------------------------------------------------- /wasm_ex208_framerate/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/wasm_ex208_framerate/index.js -------------------------------------------------------------------------------- /wasm_ex208_framerate/index.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jipok/Nim-SDL2-and-Emscripten/HEAD/wasm_ex208_framerate/index.wasm --------------------------------------------------------------------------------