Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Side by Side Diff: include/utils/SkLuaCanvas.h

Issue 831253002: Revert of Revert of move remaining virtual draw methods to onDraw (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/utils/SkDumpCanvas.h ('k') | include/utils/SkNWayCanvas.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2013 Google Inc. 2 * Copyright 2013 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkLuaCanvas_DEFINED 8 #ifndef SkLuaCanvas_DEFINED
9 #define SkLuaCanvas_DEFINED 9 #define SkLuaCanvas_DEFINED
10 10
11 #include "SkCanvas.h" 11 #include "SkCanvas.h"
12 #include "SkString.h" 12 #include "SkString.h"
13 13
14 struct lua_State; 14 struct lua_State;
15 15
16 class SkLuaCanvas : public SkCanvas { 16 class SkLuaCanvas : public SkCanvas {
17 public: 17 public:
18 void pushThis(); 18 void pushThis();
19 19
20 SkLuaCanvas(int width, int height, lua_State*, const char function[]); 20 SkLuaCanvas(int width, int height, lua_State*, const char function[]);
21 virtual ~SkLuaCanvas(); 21 virtual ~SkLuaCanvas();
22 22
23 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
24 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
25 const SkPaint& paint) SK_OVERRIDE;
26 virtual void drawOval(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
27 virtual void drawRect(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
28 virtual void drawRRect(const SkRRect&, const SkPaint& paint) SK_OVERRIDE;
29 virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
30 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
31 const SkPaint* paint) SK_OVERRIDE;
32 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
33 const SkRect& dst, const SkPaint* paint,
34 DrawBitmapRectFlags flags) SK_OVERRIDE;
35 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
36 const SkPaint* paint) SK_OVERRIDE;
37 virtual void drawVertices(VertexMode vmode, int vertexCount,
38 const SkPoint vertices[], const SkPoint texs[],
39 const SkColor colors[], SkXfermode* xmode,
40 const uint16_t indices[], int indexCount,
41 const SkPaint& paint) SK_OVERRIDE;
42
43 protected: 23 protected:
44 virtual void willSave() SK_OVERRIDE; 24 virtual void willSave() SK_OVERRIDE;
45 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE; 25 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveF lags) SK_OVERRIDE;
46 virtual void willRestore() SK_OVERRIDE; 26 virtual void willRestore() SK_OVERRIDE;
47 27
48 virtual void didConcat(const SkMatrix&) SK_OVERRIDE; 28 virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
49 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE; 29 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
50 30
51 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE; 31 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE;
52 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y, 32 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y,
53 const SkPaint&) SK_OVERRIDE; 33 const SkPaint&) SK_OVERRIDE;
54 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[], 34 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[],
55 const SkPaint&) SK_OVERRIDE; 35 const SkPaint&) SK_OVERRIDE;
56 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[], 36 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[],
57 SkScalar constY, const SkPaint&) SK_OVERRIDE; 37 SkScalar constY, const SkPaint&) SK_OVERRIDE;
58 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path, 38 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath& path,
59 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE; 39 const SkMatrix* matrix, const SkPaint&) SK_OVE RRIDE;
60 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y, 40 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
61 const SkPaint& paint) SK_OVERRIDE; 41 const SkPaint& paint) SK_OVERRIDE;
62 42
43 void onDrawPaint(const SkPaint&) SK_OVERRIDE;
44 void onDrawPoints(PointMode, size_t count, const SkPoint pts[], const SkPain t&) SK_OVERRIDE;
45 void onDrawRect(const SkRect&, const SkPaint&) SK_OVERRIDE;
46 void onDrawOval(const SkRect&, const SkPaint&) SK_OVERRIDE;
47 void onDrawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE;
48 void onDrawPath(const SkPath&, const SkPaint&) SK_OVERRIDE;
49 void onDrawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPain t*) SK_OVERRIDE;
50 void onDrawBitmapRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*,
51 DrawBitmapRectFlags flags) SK_OVERRIDE;
52 void onDrawImage(const SkImage*, SkScalar left, SkScalar top, const SkPaint* ) SK_OVERRIDE;
53 void onDrawImageRect(const SkImage*, const SkRect* src, const SkRect& dst,
54 const SkPaint*) SK_OVERRIDE;
55 void onDrawBitmapNine(const SkBitmap&, const SkIRect& center, const SkRect& dst,
56 const SkPaint*) SK_OVERRIDE;
57 void onDrawSprite(const SkBitmap&, int left, int top, const SkPaint*) SK_OVE RRIDE;
58 void onDrawVertices(VertexMode vmode, int vertexCount,
59 const SkPoint vertices[], const SkPoint texs[],
60 const SkColor colors[], SkXfermode* xmode,
61 const uint16_t indices[], int indexCount,
62 const SkPaint&) SK_OVERRIDE;
63
63 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 64 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
64 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE; 65 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVE RRIDE;
65 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE; 66 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERR IDE;
66 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; 67 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
67 68
68 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE; 69 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ) SK_OVERRIDE;
69 70
70 private: 71 private:
71 lua_State* fL; 72 lua_State* fL;
72 SkString fFunc; 73 SkString fFunc;
73 74
74 void sendverb(const char verb[]); 75 void sendverb(const char verb[]);
75 76
76 typedef SkCanvas INHERITED; 77 typedef SkCanvas INHERITED;
77 }; 78 };
78 79
79 #endif 80 #endif
OLDNEW
« no previous file with comments | « include/utils/SkDumpCanvas.h ('k') | include/utils/SkNWayCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698