X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/graphlib.git/blobdiff_plain/b90387c5d43606283eaf046eace46c9e4c4e7666..e76ea9e634775180ffbb3fd9c6479a31aeaa43fd:/test/hello.cpp diff --git a/test/hello.cpp b/test/hello.cpp index fe2f2a0..a63827b 100644 --- a/test/hello.cpp +++ b/test/hello.cpp @@ -32,24 +32,18 @@ void flip(DrawingWindow &w) int c = 0; int y = 0; -// int h = w.height; -// int w = w.width; int count = 50;//1 << 31; while (1) { -// std::cerr << "loooooooooooooooooooooop " -// << y << " (" << c << ")\n"; w.setColor(c, c, c); for (int yy = y; yy < y + 10; yy++) { for (int x = 0; x < w.width; x++) w.drawPoint(x, yy); - w.sync(); } if ((y += 10) >= w.height) { + w.sync(); y = 0; c = !c; if (!--count) break; -// std::cerr << "loooooooooooooooooooooop " -// << y << " (" << c << ")\n"; } } } @@ -116,7 +110,8 @@ void mandel(DrawingWindow &w) ci += pi; } cr += pr; -// w.sync(); +// if (x % 10 == 0) +// w.sync(); } } @@ -135,7 +130,8 @@ void lines(DrawingWindow &w) int y2 = rand() % ymax; w.setColor(r, g, b); w.drawLine(x1, y1, x2, y2); - w.sync(); + if (n % 100 == 0) + w.sync(); } }