nr-filter-blend.h revision 67a1c38ffe3fe6089e7c5aa5756aa8a00621d661
#ifndef __NR_FILTER_BLEND_H__
#define __NR_FILTER_BLEND_H__
/*
* SVG feBlend renderer
*
* "This filter composites two objects together using commonly used
* imaging software blending modes. It performs a pixel-wise combination
* of two input images."
* http://www.w3.org/TR/SVG11/filters.html#feBlend
*
* Authors:
* Niko Kiirala <niko@kiirala.com>
*
* Copyright (C) 2007 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "display/nr-filter-primitive.h"
enum FilterBlendMode {
// New in CSS Compositing and Blending Level 1
};
FilterBlend();
static FilterPrimitive *create();
virtual ~FilterBlend();
virtual bool uses_background();
int _input2;
};
} /* namespace Filters */
} /* namespace Inkscape */
#endif /* __NR_FILTER_BLEND_H__ */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :