commit | 33a8d428dbd15fcdf05234a7aba65d760c68385f | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Fri Aug 21 12:41:23 1992 +0000 |
committer | Guido van Rossum <guido@python.org> | Fri Aug 21 12:41:23 1992 +0000 |
tree | 1a7b3399d758091fba872b8f005c62e6b03183cf | |
parent | e755aa50e26923f5928b0e71924bc035f7c7b495 [diff] [blame] |
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 d63911b..17f677f 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py
@@ -301,6 +301,8 @@ if self.format == 'rgb': gl.RGBmode() gl.gconfig() + gl.RGBcolor(200, 200, 200) + gl.clear() return gl.cmode() gl.gconfig()