1
0

README.txt 362 B

123456
  1. This example code loads a few bitmap files from disk using the asynchronous
  2. i/o, and then draws it to the window. It uses a task group to watch multiple
  3. reads and deal with them in whatever order they finish.
  4. Note that for a single tiny file like this, you'd probably not want to bother
  5. with async i/o in real life, but this is just an example of how to do it.