Lines Matching refs:primitive
131 //create filter primitive node
179 //set primitive as child of filter node
194 * Creates a filter with blur primitive of specified radius for an item with the given matrix expansion, width and height
256 * Creates a simple filter with a blend primitive and a blur primitive of specified radius for
290 // Gaussian blur primitive
314 // Blend primitive
425 Inkscape::XML::Node *primitive = repr->firstChild();
426 while (primitive) {
427 if (strcmp("svg:feGaussianBlur", primitive->name()) == 0) {
428 sp_repr_set_svg_double(primitive, "stdDeviation",
432 primitive = primitive->next();
468 /* TODO: the removed filter primitive may had had a named result image, so
474 // Search for the first blur primitive and remove it. (if found)
476 Inkscape::XML::Node *primitive = repr->firstChild();
477 while (primitive) {
478 if (strcmp("svg:feGaussianBlur", primitive->name()) == 0) {
479 sp_repr_unparent(primitive);
482 primitive = primitive->next();