2013-05-15 19:34:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2013 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkLuaCanvas_DEFINED
|
|
|
|
#define SkLuaCanvas_DEFINED
|
|
|
|
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkString.h"
|
2017-02-07 19:09:38 +00:00
|
|
|
#include "SkVertices.h"
|
2013-05-15 19:34:20 +00:00
|
|
|
|
|
|
|
struct lua_State;
|
|
|
|
|
|
|
|
class SkLuaCanvas : public SkCanvas {
|
|
|
|
public:
|
2013-05-21 12:20:39 +00:00
|
|
|
void pushThis();
|
|
|
|
|
2013-05-15 19:34:20 +00:00
|
|
|
SkLuaCanvas(int width, int height, lua_State*, const char function[]);
|
|
|
|
virtual ~SkLuaCanvas();
|
|
|
|
|
2014-02-21 12:20:45 +00:00
|
|
|
protected:
|
2015-03-26 01:17:31 +00:00
|
|
|
void willSave() override;
|
2015-12-18 15:09:18 +00:00
|
|
|
SaveLayerStrategy getSaveLayerStrategy(const SaveLayerRec&) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void willRestore() override;
|
2014-03-12 20:21:48 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void didConcat(const SkMatrix&) override;
|
|
|
|
void didSetMatrix(const SkMatrix&) override;
|
2014-03-13 20:03:58 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) override;
|
2014-04-23 04:00:17 +00:00
|
|
|
virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint&) override;
|
2014-04-23 04:00:17 +00:00
|
|
|
virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint&) override;
|
2014-04-23 04:00:17 +00:00
|
|
|
virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
|
2015-03-26 01:17:31 +00:00
|
|
|
SkScalar constY, const SkPaint&) override;
|
2014-04-23 04:00:17 +00:00
|
|
|
virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkMatrix* matrix, const SkPaint&) override;
|
2016-07-07 19:47:17 +00:00
|
|
|
void onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
|
|
|
|
const SkRect* cull, const SkPaint& paint) override;
|
2014-08-26 14:56:44 +00:00
|
|
|
virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint& paint) override;
|
2014-02-21 12:20:45 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawPaint(const SkPaint&) override;
|
|
|
|
void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override;
|
|
|
|
void onDrawRect(const SkRect&, const SkPaint&) override;
|
|
|
|
void onDrawOval(const SkRect&, const SkPaint&) override;
|
2016-08-19 18:25:19 +00:00
|
|
|
void onDrawArc(const SkRect&, SkScalar, SkScalar, bool, const SkPaint&) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawRRect(const SkRRect&, const SkPaint&) override;
|
|
|
|
void onDrawPath(const SkPath&, const SkPaint&) override;
|
|
|
|
void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint*) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*,
|
2015-07-28 14:35:14 +00:00
|
|
|
SrcRectConstraint) override;
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint*) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
|
2015-07-28 14:35:14 +00:00
|
|
|
const SkPaint*, SrcRectConstraint) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint*) override;
|
2015-01-05 15:49:08 +00:00
|
|
|
void onDrawVertices(VertexMode vmode, int vertexCount,
|
|
|
|
const SkPoint vertices[], const SkPoint texs[],
|
2016-11-03 18:45:31 +00:00
|
|
|
const SkColor colors[], SkBlendMode,
|
2015-01-05 15:49:08 +00:00
|
|
|
const uint16_t indices[], int indexCount,
|
2015-03-26 01:17:31 +00:00
|
|
|
const SkPaint&) override;
|
2017-03-17 13:50:46 +00:00
|
|
|
void onDrawVerticesObject(const SkVertices* vertices, SkBlendMode mode,
|
|
|
|
const SkPaint& paint) override {
|
|
|
|
this->devolveSkVerticesToRaw(vertices, mode, paint);
|
2017-02-06 14:41:10 +00:00
|
|
|
}
|
2015-01-05 15:49:08 +00:00
|
|
|
|
2016-12-09 14:00:50 +00:00
|
|
|
void onClipRect(const SkRect&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipRRect(const SkRRect&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipPath(const SkPath&, SkClipOp, ClipEdgeStyle) override;
|
|
|
|
void onClipRegion(const SkRegion&, SkClipOp) override;
|
2014-02-28 18:19:39 +00:00
|
|
|
|
2015-03-26 01:17:31 +00:00
|
|
|
void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) override;
|
2014-06-04 12:40:44 +00:00
|
|
|
|
2013-05-15 19:34:20 +00:00
|
|
|
private:
|
|
|
|
lua_State* fL;
|
|
|
|
SkString fFunc;
|
2013-05-16 07:01:00 +00:00
|
|
|
|
2013-05-15 19:34:20 +00:00
|
|
|
void sendverb(const char verb[]);
|
|
|
|
|
|
|
|
typedef SkCanvas INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|