diff options
| author | bulia byak <buliabyak@gmail.com> | 2006-10-23 01:44:48 +0000 |
|---|---|---|
| committer | buliabyak <buliabyak@users.sourceforge.net> | 2006-10-23 01:44:48 +0000 |
| commit | fc917ac5847d6f728178367295e93dd7ac3331f1 (patch) | |
| tree | cf05d6c8f5ef18daa5a2178c7d912949071d2609 /src/filter-chemistry.h | |
| parent | Fix msgstr[0/1] problem. (diff) | |
| download | inkscape-fc917ac5847d6f728178367295e93dd7ac3331f1.tar.gz inkscape-fc917ac5847d6f728178367295e93dd7ac3331f1.zip | |
change API: separate functions creating a blur filter, one for a given item, another from the given matrix expansion and w/h
(bzr r1839)
Diffstat (limited to 'src/filter-chemistry.h')
| -rw-r--r-- | src/filter-chemistry.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/filter-chemistry.h b/src/filter-chemistry.h index 4c6606fc0..d575b7f1e 100644 --- a/src/filter-chemistry.h +++ b/src/filter-chemistry.h @@ -16,7 +16,8 @@ #include "forward.h" #include "sp-filter.h" -SPFilter *new_filter_gaussian_blur (SPDocument *document, gdouble stdDeviation, double width, double height); +SPFilter *new_filter_gaussian_blur (SPDocument *document, gdouble stdDeviation, double expansion, double width, double height); +SPFilter *new_filter_gaussian_blur_from_item (SPDocument *document, SPItem *item, gdouble stdDeviation); void remove_filter (SPObject *item, bool recursive); #endif |
