├── .gitmodules ├── CMakeLists.txt ├── README.md ├── generator ├── cpp2ffi.lua ├── generator.bat └── generator.lua ├── sdl3_ffi.lua └── test ├── audio ├── african_roomS.wav ├── arugh.wav ├── arughSt.wav ├── audiodrivers.lua ├── audiotest.lua ├── audiotest_nocallback.lua ├── loopwave.lua ├── multi_sndfile_player.lua ├── multi_sndfile_player_gui.lua ├── sample.wav ├── sndfile_player.lua └── test-wav_async.lua ├── camera ├── camera_opengl.lua ├── read-and-draw.lua └── read-process-draw.lua ├── threads ├── main.lua ├── main2.lua └── main_atomic.lua └── video ├── lena.bmp └── test-bmp.lua /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/README.md -------------------------------------------------------------------------------- /generator/cpp2ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/generator/cpp2ffi.lua -------------------------------------------------------------------------------- /generator/generator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/generator/generator.bat -------------------------------------------------------------------------------- /generator/generator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/generator/generator.lua -------------------------------------------------------------------------------- /sdl3_ffi.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/sdl3_ffi.lua -------------------------------------------------------------------------------- /test/audio/african_roomS.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/african_roomS.wav -------------------------------------------------------------------------------- /test/audio/arugh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/arugh.wav -------------------------------------------------------------------------------- /test/audio/arughSt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/arughSt.wav -------------------------------------------------------------------------------- /test/audio/audiodrivers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/audiodrivers.lua -------------------------------------------------------------------------------- /test/audio/audiotest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/audiotest.lua -------------------------------------------------------------------------------- /test/audio/audiotest_nocallback.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/audiotest_nocallback.lua -------------------------------------------------------------------------------- /test/audio/loopwave.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/loopwave.lua -------------------------------------------------------------------------------- /test/audio/multi_sndfile_player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/multi_sndfile_player.lua -------------------------------------------------------------------------------- /test/audio/multi_sndfile_player_gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/multi_sndfile_player_gui.lua -------------------------------------------------------------------------------- /test/audio/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/sample.wav -------------------------------------------------------------------------------- /test/audio/sndfile_player.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/sndfile_player.lua -------------------------------------------------------------------------------- /test/audio/test-wav_async.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/audio/test-wav_async.lua -------------------------------------------------------------------------------- /test/camera/camera_opengl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/camera/camera_opengl.lua -------------------------------------------------------------------------------- /test/camera/read-and-draw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/camera/read-and-draw.lua -------------------------------------------------------------------------------- /test/camera/read-process-draw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/camera/read-process-draw.lua -------------------------------------------------------------------------------- /test/threads/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/threads/main.lua -------------------------------------------------------------------------------- /test/threads/main2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/threads/main2.lua -------------------------------------------------------------------------------- /test/threads/main_atomic.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/threads/main_atomic.lua -------------------------------------------------------------------------------- /test/video/lena.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/video/lena.bmp -------------------------------------------------------------------------------- /test/video/test-bmp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sonoro1234/LuaJIT-SDL3/HEAD/test/video/test-bmp.lua --------------------------------------------------------------------------------