├── .github └── workflows │ ├── ci.yml │ └── docs.yml ├── .gitignore ├── CHEATSHEET.md ├── LEGACYCHANGELOG.md ├── MPL-LICENSE ├── README.md ├── docs └── README.md ├── examples └── README.md ├── tests ├── README.md ├── testinit.pas ├── testsettings.inc └── testversion.pas ├── units ├── ctypes.inc ├── jedi.inc ├── sdl.inc ├── sdl2.pas ├── sdl2_gfx.pas ├── sdl2_image.pas ├── sdl2_mixer.pas ├── sdl2_net.pas ├── sdl2_ttf.pas ├── sdlatomic.inc ├── sdlaudio.inc ├── sdlblendmode.inc ├── sdlclipboard.inc ├── sdlcpuinfo.inc ├── sdlerror.inc ├── sdlevents.inc ├── sdlfilesystem.inc ├── sdlgamecontroller.inc ├── sdlgesture.inc ├── sdlguid.inc ├── sdlhaptic.inc ├── sdlhidapi.inc ├── sdlhints.inc ├── sdljoystick.inc ├── sdlkeyboard.inc ├── sdlkeycode.inc ├── sdlloadso.inc ├── sdllocale.inc ├── sdllog.inc ├── sdlmessagebox.inc ├── sdlmisc.inc ├── sdlmouse.inc ├── sdlmutex.inc ├── sdlpixels.inc ├── sdlplatform.inc ├── sdlpower.inc ├── sdlrect.inc ├── sdlrenderer.inc ├── sdlrwops.inc ├── sdlscancode.inc ├── sdlsensor.inc ├── sdlshape.inc ├── sdlstdinc.inc ├── sdlsurface.inc ├── sdlsystem.inc ├── sdlsyswm.inc ├── sdlthread.inc ├── sdltimer.inc ├── sdltouch.inc ├── sdltypes.inc ├── sdlversion.inc └── sdlvideo.inc └── zlib-LICENSE /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/.gitignore -------------------------------------------------------------------------------- /CHEATSHEET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/CHEATSHEET.md -------------------------------------------------------------------------------- /LEGACYCHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/LEGACYCHANGELOG.md -------------------------------------------------------------------------------- /MPL-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/MPL-LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/docs/README.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/examples/README.md -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/testinit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/tests/testinit.pas -------------------------------------------------------------------------------- /tests/testsettings.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/tests/testsettings.inc -------------------------------------------------------------------------------- /tests/testversion.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/tests/testversion.pas -------------------------------------------------------------------------------- /units/ctypes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/ctypes.inc -------------------------------------------------------------------------------- /units/jedi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/jedi.inc -------------------------------------------------------------------------------- /units/sdl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl.inc -------------------------------------------------------------------------------- /units/sdl2.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2.pas -------------------------------------------------------------------------------- /units/sdl2_gfx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2_gfx.pas -------------------------------------------------------------------------------- /units/sdl2_image.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2_image.pas -------------------------------------------------------------------------------- /units/sdl2_mixer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2_mixer.pas -------------------------------------------------------------------------------- /units/sdl2_net.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2_net.pas -------------------------------------------------------------------------------- /units/sdl2_ttf.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdl2_ttf.pas -------------------------------------------------------------------------------- /units/sdlatomic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlatomic.inc -------------------------------------------------------------------------------- /units/sdlaudio.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlaudio.inc -------------------------------------------------------------------------------- /units/sdlblendmode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlblendmode.inc -------------------------------------------------------------------------------- /units/sdlclipboard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlclipboard.inc -------------------------------------------------------------------------------- /units/sdlcpuinfo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlcpuinfo.inc -------------------------------------------------------------------------------- /units/sdlerror.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlerror.inc -------------------------------------------------------------------------------- /units/sdlevents.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlevents.inc -------------------------------------------------------------------------------- /units/sdlfilesystem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlfilesystem.inc -------------------------------------------------------------------------------- /units/sdlgamecontroller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlgamecontroller.inc -------------------------------------------------------------------------------- /units/sdlgesture.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlgesture.inc -------------------------------------------------------------------------------- /units/sdlguid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlguid.inc -------------------------------------------------------------------------------- /units/sdlhaptic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlhaptic.inc -------------------------------------------------------------------------------- /units/sdlhidapi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlhidapi.inc -------------------------------------------------------------------------------- /units/sdlhints.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlhints.inc -------------------------------------------------------------------------------- /units/sdljoystick.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdljoystick.inc -------------------------------------------------------------------------------- /units/sdlkeyboard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlkeyboard.inc -------------------------------------------------------------------------------- /units/sdlkeycode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlkeycode.inc -------------------------------------------------------------------------------- /units/sdlloadso.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlloadso.inc -------------------------------------------------------------------------------- /units/sdllocale.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdllocale.inc -------------------------------------------------------------------------------- /units/sdllog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdllog.inc -------------------------------------------------------------------------------- /units/sdlmessagebox.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlmessagebox.inc -------------------------------------------------------------------------------- /units/sdlmisc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlmisc.inc -------------------------------------------------------------------------------- /units/sdlmouse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlmouse.inc -------------------------------------------------------------------------------- /units/sdlmutex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlmutex.inc -------------------------------------------------------------------------------- /units/sdlpixels.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlpixels.inc -------------------------------------------------------------------------------- /units/sdlplatform.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlplatform.inc -------------------------------------------------------------------------------- /units/sdlpower.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlpower.inc -------------------------------------------------------------------------------- /units/sdlrect.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlrect.inc -------------------------------------------------------------------------------- /units/sdlrenderer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlrenderer.inc -------------------------------------------------------------------------------- /units/sdlrwops.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlrwops.inc -------------------------------------------------------------------------------- /units/sdlscancode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlscancode.inc -------------------------------------------------------------------------------- /units/sdlsensor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlsensor.inc -------------------------------------------------------------------------------- /units/sdlshape.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlshape.inc -------------------------------------------------------------------------------- /units/sdlstdinc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlstdinc.inc -------------------------------------------------------------------------------- /units/sdlsurface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlsurface.inc -------------------------------------------------------------------------------- /units/sdlsystem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlsystem.inc -------------------------------------------------------------------------------- /units/sdlsyswm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlsyswm.inc -------------------------------------------------------------------------------- /units/sdlthread.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlthread.inc -------------------------------------------------------------------------------- /units/sdltimer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdltimer.inc -------------------------------------------------------------------------------- /units/sdltouch.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdltouch.inc -------------------------------------------------------------------------------- /units/sdltypes.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdltypes.inc -------------------------------------------------------------------------------- /units/sdlversion.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlversion.inc -------------------------------------------------------------------------------- /units/sdlvideo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/units/sdlvideo.inc -------------------------------------------------------------------------------- /zlib-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PascalGameDevelopment/SDL2-for-Pascal/HEAD/zlib-LICENSE --------------------------------------------------------------------------------