From: Guido van Rossum Date: Fri, 21 Aug 1992 12:41:23 +0000 (+0000) Subject: Clear the window to rather light grey when switching to RGB mode. X-Git-Tag: v0.9.8~192 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=33a8d428dbd15fcdf05234a7aba65d760c68385f;p=thirdparty%2FPython%2Fcpython.git Clear the window to rather light grey when switching to RGB mode. --- diff --git a/Demo/sgi/video/VFile.py b/Demo/sgi/video/VFile.py index d63911b9b15f..17f677f315d1 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py @@ -301,6 +301,8 @@ class VinFile: if self.format == 'rgb': gl.RGBmode() gl.gconfig() + gl.RGBcolor(200, 200, 200) + gl.clear() return gl.cmode() gl.gconfig()