| Index: src/record/SkRecordDraw.h
|
| diff --git a/src/record/SkRecordDraw.h b/src/record/SkRecordDraw.h
|
| index 744dfc5b33020070e0f3f2202abe576ce0b8ba19..042147df997082c4982403458e8ec6179497566c 100644
|
| --- a/src/record/SkRecordDraw.h
|
| +++ b/src/record/SkRecordDraw.h
|
| @@ -25,6 +25,9 @@ CASE(Restore) { canvas->restore(); }
|
| CASE(Save) { canvas->save(r.flags); }
|
| CASE(SaveLayer) { canvas->saveLayer(r.bounds, r.paint, r.flags); }
|
|
|
| +CASE(PushCull) { canvas->pushCull(r.rect); }
|
| +CASE(PopCull) { canvas->popCull(); }
|
| +
|
| CASE(Concat) { canvas->concat(r.matrix); }
|
| CASE(SetMatrix) { canvas->setMatrix(r.matrix); }
|
|
|
|
|