Searched defs:blend (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/extension/internal/filter/ |
H A D | textures.h | 74 "<param name=\"blend\" gui-text=\"" N_("Blend:") "\" type=\"float\" appearance=\"full\" precision=\"2\" min=\"0.01\" max=\"30.00\">5</param>\n" 113 std::ostringstream blend; local 124 blend << ext->get_param_float("blend"); 144 displacement.str().c_str(), blend.str().c_str(),
|
H A D | blurs.h | 171 * Blend mode (enum, default Darken) -> blend (mode) 191 "<param name=\"blend\" gui-text=\"" N_("Blend:") "\" type=\"enum\">\n" 220 std::ostringstream blend; local 226 blend << ext->get_param_enum("blend"); 234 "<feBlend in=\"blur2\" in2=\"blur1\" mode=\"%s\" result=\"blend\" />\n" 235 "</filter>\n", bright.str().c_str(), fade.str().c_str(), hblur.str().c_str(), vblur.str().c_str(), blend.str().c_str()); 309 * Blend type (enum, default normal) -> blend (mode) 310 * Blend to background (boolean, default false) -> blend (false: in2="flood", true: in2="BackgroundImage") 337 "<param name=\"blend\" gu 375 std::ostringstream blend; local [all...] |
H A D | bumps.h | 64 * Blend type (enum, default normal) -> blend (mode) 129 "<param name=\"blend\" gui-text=\"" N_("Blend type:") "\" type=\"enum\">\n" 164 std::ostringstream blend; local 183 blend << ext->get_param_enum("blend"); 253 "<feBlend in2=\"SourceGraphic\" mode=\"%s\" result=\"blend\" />\n" 254 "<feComposite in=\"blend\" in2=\"SourceGraphic\" operator=\"in\" k2=\"1\" result=\"composite3\" />\n" 259 colorize.str().c_str(), blend.str().c_str()); 290 * Lighting blend (enum, default screen) -> blend1 (mode) 291 * Highlight blend (enu [all...] |
H A D | paint.h | 48 * Drawing blend (enum, default Normal) -> blend1 (mode) 58 * Grain blend (enum, default Normal) -> blend2 (mode) 76 "<param name=\"dblend\" gui-text=\"" N_("Drawing blend:") "\" type=\"enum\">\n" 100 "<param name=\"gblend\" gui-text=\"" N_("Grain blend:") "\" type=\"enum\">\n" 219 * Transparent (boolean, default false) -> composite 4 (in, true->composite3, false->blend) 273 trans << "blend"; 286 "<feBlend in=\"flood\" in2=\"composite3\" mode=\"multiply\" result=\"blend\" />\n" 570 * Blend (enum [normal, multiply, screen], default normal) -> blend (mode) 593 "<param name=\"blend\" gui-text=\"" N_("Blend mode:") "\" type=\"enum\">\n" 616 std::ostringstream blend; local 746 std::ostringstream blend; local [all...] |
H A D | color.h | 678 "<feBlend in=\"composite4\" in2=\"composite3\" mode=\"normal\" result=\"blend\" />\n" 694 * Background blend (enum, Normal, Multiply, Screen, default Normal) -> blend (mode) 719 "<param name=\"blend\" gui-text=\"" N_("Background blend mode:") "\" type=\"enum\">\n" 743 std::ostringstream blend; local 746 blend << ext->get_param_enum("blend"); 782 "<feBlend in2=\"BackgroundImage\" mode=\"%s\" result=\"blend\" />\n" 783 "</filter>\n", colors.str().c_str(), blend [all...] |
/inkscape/src/display/ |
H A D | cairo-templates.h | 42 void ink_cairo_surface_blend(cairo_surface_t *in1, cairo_surface_t *in2, cairo_surface_t *out, Blend blend) argument 91 *(out_data + i) = blend(*(in1_data + i), *(in2_data + i)); 102 *out_p = blend(*in1_p, *in2_p); 119 *out_p = blend(*in1_p, in2_px); 137 *out_p = blend(in1_px, *in2_p); 153 guint32 out_px = blend(in1_px, in2_px); 167 guint32 out_px = blend(in1_px, in2_px);
|
/inkscape/src/ |
H A D | desktop-style.cpp | 29 #include "filters/blend.h" 1694 int blend = 0; local 1716 // determine whether filter is simple (blend and/or blur) or complex 1738 blend = spblend->blend_mode; 1743 blend = complex_filter; 1746 // defaults to blend mode = "normal" 1748 blend = 0; 1751 if(blend_prev != empty_prev && blend_prev != blend) 1753 blend_prev = blend; 1757 style_res->filter_blend_mode.value = blend; [all...] |
Completed in 33 milliseconds