summaryrefslogtreecommitdiff
path: root/games/battleball/patches/patch-aa
blob: 6c0e98ebd46b3c1c10a719ba589fcd135f123048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$NetBSD: patch-aa,v 1.3 2000/01/06 08:46:33 fredb Exp $

--- lib3d/gfxtarget.h.orig	Thu Sep  2 21:25:19 1999
+++ lib3d/gfxtarget.h	Thu Jan  6 02:05:27 2000
@@ -72,7 +72,14 @@
     XFillRectangle(disp,win,gc,(int)p.x,(int)p.y,(int)sz.x,(int)sz.y);
   }
   void  ResizeWindow(const pt2d& sz) {
+  #if 0
+  /* This produces wierd artifacts on my systems--creeping windows,
+     and "oscillating" windows--NetBSD-1.4.1 and NetBSD-1.4P with
+     include X, also with PC Xserver.
+		 --F. Bruckman <fb@enteract.com>,<fredb@netbsd.org>
+  */
     XResizeWindow(disp,win,(int)sz.x,(int)sz.y);
+  #endif
     HandleResize();
   }