Home | History | Annotate | Download | only in filters

Lines Matching refs:ts

202 static TextStream& operator<<(TextStream& ts, const ColorMatrixType& type)
206 ts << "UNKNOWN";
209 ts << "MATRIX";
212 ts << "SATURATE";
215 ts << "HUEROTATE";
218 ts << "LUMINANCETOALPHA";
221 return ts;
224 TextStream& FEColorMatrix::externalRepresentation(TextStream& ts, int indent) const
226 writeIndent(ts, indent);
227 ts << "[feColorMatrix";
228 FilterEffect::externalRepresentation(ts);
229 ts << " type=\"" << m_type << "\"";
231 ts << " values=\"";
235 ts << *ptr;
238 ts << " ";
240 ts << "\"";
242 ts << "]\n";
243 inputEffect(0)->externalRepresentation(ts, indent + 1);
244 return ts;