Lines Matching defs:opacity
33 this->opacity = 1.0;
44 this->readAttr( "stop-opacity" );
64 * stop-color and stop-opacity properties.
75 gchar const *p = this->getStyleProperty( "stop-opacity", "1");
76 gdouble opacity = sp_svg_read_percentage(p, this->opacity);
77 this->opacity = opacity;
97 gchar const *p = this->getStyleProperty( "stop-opacity", "1");
98 gdouble opacity = sp_svg_read_percentage(p, this->opacity);
99 this->opacity = opacity;
138 gfloat opacity = this->opacity;
143 // stop-opacity), we must do it AFTER calling the parent write method; otherwise
153 os << ";stop-opacity:" << opacity;
156 repr->setAttribute("stop-opacity", NULL);
246 unsigned const alpha = static_cast<unsigned>(this->opacity * 0xff + 0.5);
252 return this->specified_color.toRGBA32(this->opacity);