| Index: src/core/SkPictureRecord.h
|
| diff --git a/src/core/SkPictureRecord.h b/src/core/SkPictureRecord.h
|
| index f071db1ea19d3e9559e56d1a4ddffb0914de98cb..ecdb368d3b7e27a87840b1f0123628942615b3bc 100644
|
| --- a/src/core/SkPictureRecord.h
|
| +++ b/src/core/SkPictureRecord.h
|
| @@ -190,12 +190,13 @@ protected:
|
| void onDrawRRect(const SkRRect&, const SkPaint&) override;
|
| void onDrawPath(const SkPath&, const SkPaint&) override;
|
| void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*) override;
|
| - void onDrawImageLattice(const SkImage*, const SkCanvas::Lattice& lattice, const SkRect& dst,
|
| - const SkPaint*) override;
|
| void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
|
| const SkPaint*, SrcRectConstraint) override;
|
| void onDrawImageNine(const SkImage*, const SkIRect& center, const SkRect& dst,
|
| const SkPaint*) override;
|
| + void onDrawImageLattice(const SkImage*, const SkCanvas::Lattice& lattice, const SkRect& dst,
|
| + const SkPaint*) override;
|
| +
|
| void onDrawVertices(VertexMode vmode, int vertexCount,
|
| const SkPoint vertices[], const SkPoint texs[],
|
| const SkColor colors[], SkXfermode* xmode,
|
| @@ -250,6 +251,10 @@ protected:
|
| const SkPaint*) override {
|
| sk_throw();
|
| }
|
| + void onDrawBitmapLattice(const SkBitmap&, const SkCanvas::Lattice& lattice, const SkRect& dst,
|
| + const SkPaint*) override {
|
| + sk_throw();
|
| + }
|
|
|
| private:
|
| SkPictureContentInfo fContentInfo;
|
|
|