From d9a77eb8ac5d507665cbf8b20f5d8187148ebfd1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 14 Dec 2013 16:59:21 +0300 Subject: Improve a bit separate images drawing. --- src/test/testlauncher.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/test') diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index 44421ee41..99f0b1753 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -94,7 +94,7 @@ int TestLauncher::testBackend() const for (int f = 0; f < cnt; f ++) { - mainGraphics->drawImage(img, cnt * 7, cnt * 5); + DRAW_IMAGE(mainGraphics, img, cnt * 7, cnt * 5); mainGraphics->updateScreen(); } @@ -152,11 +152,11 @@ int TestLauncher::testFps() { for (int y = 0; y < 600; y += 50) { - mainGraphics->drawImage(img[idx], x, y); + DRAW_IMAGE(mainGraphics, img[idx], x, y); idx ++; if (idx > sz) idx = 0; - mainGraphics->drawImage(img[idx], x, y); + DRAW_IMAGE(mainGraphics, img[idx], x, y); idx ++; if (idx > sz) idx = 0; @@ -211,9 +211,9 @@ int TestLauncher::testInternal() { for (int y = 0; y < 600; y += 25) { - mainGraphics->drawImage(img[idx], x, y); - mainGraphics->drawImage(img[idx], x + 1, y); - mainGraphics->drawImage(img[idx], x, y + 5); + DRAW_IMAGE(mainGraphics, img[idx], x, y); + DRAW_IMAGE(mainGraphics, img[idx], x + 1, y); + DRAW_IMAGE(mainGraphics, img[idx], x, y + 5); idx ++; if (idx > 3) -- cgit v1.2.3-60-g2f50