Searched refs:in2 (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/filters/
H A Ddisplacementmap.cpp28 this->in2 = Inkscape::Filters::NR_FILTER_SLOT_NOT_SET;
44 this->readAttr( "in2" );
48 /* Unlike normal in, in2 is required attribute. Make sure, we can call
50 if (this->in2 == Inkscape::Filters::NR_FILTER_SLOT_NOT_SET ||
51 this->in2 == Inkscape::Filters::NR_FILTER_UNNAMED_SLOT)
54 this->in2 = sp_filter_primitive_name_previous_out(this);
55 repr->setAttribute("in2", sp_filter_name_for_image(parent, this->in2));
129 if (input != this->in2) {
130 this->in2
[all...]
H A Dblend.cpp31 in2(Inkscape::Filters::NR_FILTER_SLOT_NOT_SET)
48 this->readAttr( "in2" );
50 /* Unlike normal in, in2 is required attribute. Make sure, we can call
52 if (this->in2 == Inkscape::Filters::NR_FILTER_SLOT_NOT_SET ||
53 this->in2 == Inkscape::Filters::NR_FILTER_UNNAMED_SLOT)
56 this->in2 = sp_filter_primitive_name_previous_out(this);
57 repr->setAttribute("in2", sp_filter_name_for_image(parent, this->in2));
150 if (input != this->in2) {
151 this->in2
[all...]
H A Dcomposite.cpp26 k1(0), k2(0), k3(0), k4(0), in2(Inkscape::Filters::NR_FILTER_SLOT_NOT_SET)
50 this->readAttr( "in2" );
52 /* Unlike normal in, in2 is required attribute. Make sure, we can call
54 if (this->in2 == Inkscape::Filters::NR_FILTER_SLOT_NOT_SET ||
55 this->in2 == Inkscape::Filters::NR_FILTER_UNNAMED_SLOT)
58 this->in2 = sp_filter_primitive_name_previous_out(this);
59 repr->setAttribute("in2", sp_filter_name_for_image(parent, this->in2));
169 if (input != this->in2) {
170 this->in2
[all...]
H A Dblend.h28 int in2; member in class:SPFeBlend
H A Ddisplacementmap.h33 int in2; member in class:SPFeDisplacementMap
H A Dcomposite.h50 int in2; member in class:SPFeComposite
/inkscape/src/display/
H A Dnr-filter-composite.cpp42 guint32 operator()(guint32 in1, guint32 in2) { argument
44 EXTRACT_ARGB32(in2, ab, rb, gb, bb)
H A Dcairo-templates.h42 void ink_cairo_surface_blend(cairo_surface_t *in1, cairo_surface_t *in2, cairo_surface_t *out, Blend blend) argument
45 cairo_surface_flush(in2);
53 int w = cairo_image_surface_get_width(in2);
54 int h = cairo_image_surface_get_height(in2);
56 int stride2 = cairo_image_surface_get_stride(in2);
59 int bpp2 = cairo_image_surface_get_format(in2) == CAIRO_FORMAT_A8 ? 1 : 4;
71 guint32 *const in2_data = reinterpret_cast<guint32*>(cairo_image_surface_get_data(in2));
/inkscape/src/ui/dialog/
H A Dfilter-effects-dialog.cpp2163 // Draw "in2" shape
2189 // Draw "in2" connection
2360 image = SP_FEBLEND(prim)->in2;
2362 image = SP_FECOMPOSITE(prim)->in2;
2364 image = SP_FEDISPLACEMENTMAP(prim)->in2;
2603 if (SP_FEBLEND(prim)->in2 == result) {
2604 prim->getRepr()->setAttribute("in2", 0);
2607 if (SP_FECOMPOSITE(prim)->in2 == result) {
2608 prim->getRepr()->setAttribute("in2", 0);
2611 if (SP_FEDISPLACEMENTMAP(prim)->in2
[all...]

Completed in 57 milliseconds