diff options
author | Tavian Barnes <tavianator@gmail.com> | 2009-07-09 00:32:30 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2009-07-09 00:32:30 +0000 |
commit | 9f1b759e2fac0b15a7ef5a7a527ba66dbdc319b6 (patch) | |
tree | 2bd10bdeca7c6b1a9d11a4ef719e13b3d8ed999b /tests/png.c | |
parent | 533fa6d364105c1f6438156d969e48aa9199cddc (diff) | |
download | dimension-9f1b759e2fac0b15a7ef5a7a527ba66dbdc319b6.tar.xz |
Enable drawing progres bars in the background.
Diffstat (limited to 'tests/png.c')
-rw-r--r-- | tests/png.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/png.c b/tests/png.c index e5641f5..488cd56 100644 --- a/tests/png.c +++ b/tests/png.c @@ -56,7 +56,7 @@ main() { return EXIT_FAILURE; } - progressbar("Raytracing scene: ", progress); + dmnsn_progressbar("Raytracing scene: ", progress); if (dmnsn_finish_progress(progress) != 0) { dmnsn_delete_default_scene(scene); @@ -81,7 +81,7 @@ main() { return EXIT_FAILURE; } - progressbar("Writing PNG file: ", progress); + dmnsn_progressbar("Writing PNG file: ", progress); if (dmnsn_finish_progress(progress) != 0) { fclose(ofile); @@ -111,7 +111,7 @@ main() { return EXIT_FAILURE; } - progressbar("Reading PNG file: ", progress); + dmnsn_progressbar("Reading PNG file: ", progress); if (dmnsn_finish_progress(progress) != 0) { fclose(ifile); @@ -138,7 +138,7 @@ main() { return EXIT_FAILURE; } - progressbar("Writing PNG file: ", progress); + dmnsn_progressbar("Writing PNG file: ", progress); if (dmnsn_finish_progress(progress) != 0) { fclose(ofile); |