Commit 98880125 authored by Sam Lantinga's avatar Sam Lantinga

Allow points to be outside the window bounds, stress testing the clipping code.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%404294
parent 0e0b96d7
......@@ -107,10 +107,10 @@ DrawLines(SDL_WindowID window)
SDL_RenderLine(0, window_h / 2, window_w - 1, window_h / 2);
SDL_RenderLine(window_w / 2, 0, window_w / 2, window_h - 1);
} else {
x1 = rand() % window_w;
x2 = rand() % window_w;
y1 = rand() % window_h;
y2 = rand() % window_h;
x1 = (rand() % (window_w*2)) - window_w;
x2 = (rand() % (window_w*2)) - window_w;
y1 = (rand() % (window_h*2)) - window_h;
y2 = (rand() % (window_h*2)) - window_h;
SDL_RenderLine(x1, y1, x2, y2);
}
}
......@@ -157,8 +157,8 @@ DrawRects(SDL_WindowID window)
rect.w = rand() % (window_h / 2);
rect.h = rand() % (window_h / 2);
rect.x = (rand() % window_w) - (rect.w / 2);
rect.y = (rand() % window_w) - (rect.h / 2);
rect.x = (rand() % (window_w*2) - window_w) - (rect.w / 2);
rect.y = (rand() % (window_h*2) - window_h) - (rect.h / 2);
SDL_RenderRect(&rect);
}
SDL_SetRenderDrawBlendMode(SDL_BLENDMODE_NONE);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment