diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-07-15 20:38:23 +0000 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-07-15 20:38:23 +0000 |
commit | 48c7edd1961e2dbb3aaff05618b701001f879c31 (patch) | |
tree | ac6d3169d50708c4083d866b88a0d73a6c706bd2 /draw | |
parent | da6068d929e5bf9dc79b546bd014bd46289630e2 (diff) | |
download | mupdf-48c7edd1961e2dbb3aaff05618b701001f879c31.tar.xz |
Check page for transparency to install a page-level transparency group.
Diffstat (limited to 'draw')
-rw-r--r-- | draw/blendmodes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/draw/blendmodes.c b/draw/blendmodes.c index 5a7530ec..11cb627f 100644 --- a/draw/blendmodes.c +++ b/draw/blendmodes.c @@ -282,7 +282,7 @@ fz_blendnonseparable(byte * restrict sp, byte * restrict bp, int w, fz_blendmode saba = fz_mul255(sa, ba); - /* ugh, bivision to get non-premul components */ + /* ugh, division to get non-premul components */ if (sa) { sr = sr * 255 / sa; sg = sg * 255 / sa; |