You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sdl/examples/asyncio/01-load-bitmaps
Cameron Cawley 0bbbf3d43b Support resizable windows with most examples 2 weeks ago
..
README.txt asyncio: Added async i/o APIs. 11 months ago
load-bitmaps.c Support resizable windows with most examples 2 weeks ago
thumbnail.png examples: Improve webpage generation in various ways, add thumbnails, etc. 11 months ago

README.txt

This example code loads a few bitmap files from disk using the asynchronous
i/o, and then draws it to the window. It uses a task group to watch multiple
reads and deal with them in whatever order they finish.

Note that for a single tiny file like this, you'd probably not want to bother
with async i/o in real life, but this is just an example of how to do it.