diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2010-12-29 19:14:58 +0000 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2010-12-29 19:14:58 +0000 |
commit | 19e87a00961b24e446ee247569db5300b3974b04 (patch) | |
tree | f923865759ea6801334a47d8e39e217850c6ec7d /fitz | |
parent | 2c911e0a3aaeed80b24956d1871c740a5be42398 (diff) | |
download | mupdf-19e87a00961b24e446ee247569db5300b3974b04.tar.xz |
Support radial shadings as another special case in the fitz renderer.
Diffstat (limited to 'fitz')
-rw-r--r-- | fitz/fitz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h index 3275dc4e..e35bf0f9 100644 --- a/fitz/fitz.h +++ b/fitz/fitz.h @@ -823,7 +823,7 @@ struct fz_shade_s int meshlen; int meshcap; - float *mesh; /* [x y t] or [x y c1 ... cn] */ + float *mesh; /* [x y 0], [x y r], [x y t] or [x y c1 ... cn] */ }; fz_shade *fz_keepshade(fz_shade *shade); |