SDL/examples/asyncio/01-load-bitmaps
Sam Lantinga bb0d6221c1 Use PNG files for tests and examples
These are much smaller than the previous BMP files

Fixes https://github.com/libsdl-org/SDL/issues/14159
2025-10-06 16:45:53 -07:00
..
load-bitmaps.c Use PNG files for tests and examples 2025-10-06 16:45:53 -07:00
README.txt
thumbnail.png examples: Improve webpage generation in various ways, add thumbnails, etc. 2024-12-05 23:58:23 -05:00

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.