diff options
Diffstat (limited to 'src/contrib/SDL-3.2.20/docs/README.md')
-rw-r--r-- | src/contrib/SDL-3.2.20/docs/README.md | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/src/contrib/SDL-3.2.20/docs/README.md b/src/contrib/SDL-3.2.20/docs/README.md new file mode 100644 index 0000000..d0f5a54 --- /dev/null +++ b/src/contrib/SDL-3.2.20/docs/README.md | |||
@@ -0,0 +1,45 @@ | |||
1 | # Simple DirectMedia Layer | ||
2 | |||
3 | https://www.libsdl.org/ | ||
4 | |||
5 | Simple DirectMedia Layer is a cross-platform development library designed | ||
6 | to provide low level access to audio, keyboard, mouse, joystick, and graphics | ||
7 | hardware. It is used by video playback software, emulators, and popular games | ||
8 | including Valve's award winning catalog and many Humble Bundle games. | ||
9 | |||
10 | SDL officially supports Windows, macOS, Linux, iOS, Android, Xbox, PlayStation 4/5, Nintendo Switch, and many other platforms. | ||
11 | |||
12 | SDL is written in C, works natively with C++, and there are bindings | ||
13 | available for several other languages, including C# and Python. | ||
14 | |||
15 | This library is distributed under the zlib license, which can be found | ||
16 | in the file "LICENSE.txt". | ||
17 | |||
18 | Information on building SDL with CMake is available in [README-cmake.md](README-cmake.md) | ||
19 | |||
20 | The best way to learn how to use SDL is to check out the header files in | ||
21 | the "include" subdirectory and the programs in the "examples" subdirectory. | ||
22 | The header files and test programs are well commented and always up to date. | ||
23 | |||
24 | Information on reporting bugs and contributing is available in [README-contributing.md](README-contributing.md) | ||
25 | |||
26 | More documentation and FAQs are available online at the [wiki](http://wiki.libsdl.org/) | ||
27 | |||
28 | - [Migrating from SDL 2.0](README-migration.md) | ||
29 | - [main()](README-main-functions.md) | ||
30 | - [High DPI Support](README-highdpi.md) | ||
31 | - [Touch](README-touch.md) | ||
32 | - [Supported platforms](README-platforms.md) | ||
33 | - [Porting information](README-porting.md) | ||
34 | |||
35 | If you need help with the library, or just want to discuss SDL related | ||
36 | issues, you can join the [SDL Discourse](https://discourse.libsdl.org/), | ||
37 | which can be used as a web forum or a mailing list, at your preference. | ||
38 | |||
39 | If you want to report bugs or contribute patches, please submit them to | ||
40 | [our bug tracker](https://github.com/libsdl-org/SDL/issues) | ||
41 | |||
42 | Enjoy! | ||
43 | |||
44 | |||
45 | Sam Lantinga <mailto:slouken@libsdl.org> | ||