diff options
| author | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-12 12:55:27 +0000 |
|---|---|---|
| committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-12 12:55:27 +0000 |
| commit | f9b7201bb84c05f03d77d33a37dae0486fb231e2 (patch) | |
| tree | 41bdfb3c385c9d20375c1f835198bc68d6182a21 | |
| parent | 7f8765d327c9e8634da1f4d6f792897fbba216f6 (diff) | |
| download | cpython-git-f9b7201bb84c05f03d77d33a37dae0486fb231e2.tar.gz | |
* Added support for X window interface.
* Moviechannel now uses colormap mode on 8-bit XS Indigo's instead of
converting the image to RGB32.
* Compression Library support is dependent on USE_CL compile-time flag.
| -rwxr-xr-x | Demo/sgi/video/VFile.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Demo/sgi/video/VFile.py b/Demo/sgi/video/VFile.py index 2c99183ea7..d0eab0db35 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py @@ -416,6 +416,7 @@ class Displayer(VideoParams): pmsize = bytes*8 elif self.format == 'compress': data = self.decompress(data) + pmsize = 32 elif self.format in ('mono', 'grey4'): if self.mustunpack: if self.format == 'mono': |
