This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
* Fix color mask order in Dither class.
tags/v0.99.beta18
Alex Foulon
alxf
14 years ago
parent
80113aa069
commit
8800d9743b
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
python/caca/dither.py
+ 1
- 1
python/caca/dither.py
View File
@@ -68,7 +68,7 @@ class Dither(_Dither):
]
self._dither = _lib.caca_create_dither(bpp, width, height, pitch,
bmask, gmask, r
mask, amask)
rmask, gmask, b
mask, amask)
if self._dither == 0:
raise DitherError, "Failed to create dither object"
Write
Preview
Loading…
Cancel
Save