From 75baf2b591abcc0e251f2aeef60283325407f05b Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 15 Sep 2021 09:40:06 -0400 Subject: [PATCH] make the default clip basically nothing since otherwise when you adjust origin you still get negative stuff cut off and that should be opt in --- simpledisplay.d | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 390d6db..6d4b479 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -8050,7 +8050,8 @@ struct ScreenPainter { this.window = window; if(window.closed) return; // null painter is now allowed so no need to throw anymore, this likely happens at the end of a program anyway - currentClipRectangle = arsd.color.Rectangle(0, 0, window.width, window.height); + //currentClipRectangle = arsd.color.Rectangle(0, 0, window.width, window.height); + currentClipRectangle = arsd.color.Rectangle(short.min, short.min, short.max, short.max); if(window.activeScreenPainter !is null) { impl = window.activeScreenPainter; if(impl.referenceCount == 0) { @@ -8113,14 +8114,10 @@ struct ScreenPainter { @property int originX() { return _originX; } @property int originY() { return _originY; } @property int originX(int a) { - //currentClipRectangle.left += a - _originX; - //currentClipRectangle.right += a - _originX; _originX = a; return _originX; } @property int originY(int a) { - //currentClipRectangle.top += a - _originY; - //currentClipRectangle.bottom += a - _originY; _originY = a; return _originY; }