| Index: src/utils/SkLuaCanvas.cpp
|
| diff --git a/src/utils/SkLuaCanvas.cpp b/src/utils/SkLuaCanvas.cpp
|
| index b0b912827f743d49d1e901ec6daa334d8d387d60..0903ee8c89a706ecec8d872a05ade62fc3c2fc3f 100644
|
| --- a/src/utils/SkLuaCanvas.cpp
|
| +++ b/src/utils/SkLuaCanvas.cpp
|
| @@ -268,10 +268,11 @@ void SkLuaCanvas::onDrawTextOnPath(const void* text, size_t byteLength, const Sk
|
| lua.pushPaint(paint, "paint");
|
| }
|
|
|
| -void SkLuaCanvas::onDrawPicture(const SkPicture* picture) {
|
| +void SkLuaCanvas::onDrawPicture(const SkPicture* picture, const SkMatrix* matrix,
|
| + const SkPaint* paint) {
|
| AUTO_LUA("drawPicture");
|
| // call through so we can see the nested picture ops
|
| - this->INHERITED::onDrawPicture(picture);
|
| + this->INHERITED::onDrawPicture(picture, matrix, paint);
|
| }
|
|
|
| void SkLuaCanvas::drawVertices(VertexMode vmode, int vertexCount,
|
|
|