Home | History | Annotate | Download | only in utils

Lines Matching refs:Op

109 static const char* toString(SkRegion::Op op) {
113 return gOpNames[op];
275 bool SkDumpCanvas::clipRect(const SkRect& rect, SkRegion::Op op, bool doAA) {
278 this->dump(kClip_Verb, NULL, "clipRect(%s %s %s)", str.c_str(), toString(op),
280 return this->INHERITED::clipRect(rect, op, doAA);
283 bool SkDumpCanvas::clipRRect(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
286 this->dump(kClip_Verb, NULL, "clipRRect(%s %s %s)", str.c_str(), toString(op),
288 return this->INHERITED::clipRRect(rrect, op, doAA);
291 bool SkDumpCanvas::clipPath(const SkPath& path, SkRegion::Op op, bool doAA) {
294 this->dump(kClip_Verb, NULL, "clipPath(%s %s %s)", str.c_str(), toString(op),
296 return this->INHERITED::clipPath(path, op, doAA);
299 bool SkDumpCanvas::clipRegion(const SkRegion& deviceRgn, SkRegion::Op op) {
303 toString(op));
304 return this->INHERITED::clipRegion(deviceRgn, op);