Chromium Code Reviews

Side by Side Diff: sky/engine/platform/graphics/ReplayingCanvas.h

Issue 812543002: Update from https://crrev.com/308331 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 33 matching lines...)
44 virtual bool abortDrawing() override; 44 virtual bool abortDrawing() override;
45 45
46 virtual void drawPaint(const SkPaint&) override; 46 virtual void drawPaint(const SkPaint&) override;
47 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override; 47 virtual void drawPoints(PointMode, size_t count, const SkPoint pts[], const SkPaint&) override;
48 virtual void drawRect(const SkRect&, const SkPaint&) override; 48 virtual void drawRect(const SkRect&, const SkPaint&) override;
49 virtual void drawOval(const SkRect&, const SkPaint&) override; 49 virtual void drawOval(const SkRect&, const SkPaint&) override;
50 virtual void drawRRect(const SkRRect&, const SkPaint&) override; 50 virtual void drawRRect(const SkRRect&, const SkPaint&) override;
51 virtual void drawPath(const SkPath&, const SkPaint&) override; 51 virtual void drawPath(const SkPath&, const SkPaint&) override;
52 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint* = 0) override; 52 virtual void drawBitmap(const SkBitmap&, SkScalar left, SkScalar top, const SkPaint* = 0) override;
53 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*, DrawBitmapRectFlags) override; 53 virtual void drawBitmapRectToRect(const SkBitmap&, const SkRect* src, const SkRect& dst, const SkPaint*, DrawBitmapRectFlags) override;
54 virtual void drawBitmapMatrix(const SkBitmap&, const SkMatrix&, const SkPain t* = 0) override;
55 virtual void drawBitmapNine(const SkBitmap&, const SkIRect& center, const Sk Rect& dst, const SkPaint*) override; 54 virtual void drawBitmapNine(const SkBitmap&, const SkIRect& center, const Sk Rect& dst, const SkPaint*) override;
56 virtual void drawSprite(const SkBitmap&, int left, int top, const SkPaint* = 0) override; 55 virtual void drawSprite(const SkBitmap&, int left, int top, const SkPaint* = 0) override;
57 virtual void drawVertices(VertexMode vmode, int vertexCount, const SkPoint v ertices[], const SkPoint texs[], 56 virtual void drawVertices(VertexMode vmode, int vertexCount, const SkPoint v ertices[], const SkPoint texs[],
58 const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint&) override; 57 const SkColor colors[], SkXfermode* xmode, const uint16_t indices[], int indexCount, const SkPaint&) override;
59 virtual void drawData(const void* data, size_t length) override; 58 virtual void drawData(const void* data, size_t length) override;
60 virtual void beginCommentGroup(const char* description) override; 59 virtual void beginCommentGroup(const char* description) override;
61 virtual void addComment(const char* keyword, const char* value) override; 60 virtual void addComment(const char* keyword, const char* value) override;
62 virtual void endCommentGroup() override; 61 virtual void endCommentGroup() override;
63 62
64 virtual void onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint&) override; 63 virtual void onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint&) override;
65 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y, const SkPaint&) override; 64 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkS calar y, const SkPaint&) override;
66 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[], const SkPaint&) override; 65 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoin t pos[], const SkPaint&) override;
67 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[], SkScalar constY, const SkPaint&) override; 66 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkSca lar xpos[], SkScalar constY, const SkPaint&) override;
68 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath&, const SkMatrix*, const SkPaint&) override; 67 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkP ath&, const SkMatrix*, const SkPaint&) override;
69 virtual void onPushCull(const SkRect& cullRect) override;
70 virtual void onPopCull() override;
71 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override ; 68 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override ;
72 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) overri de; 69 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) overri de;
73 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override ; 70 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override ;
74 virtual void onClipRegion(const SkRegion&, SkRegion::Op) override; 71 virtual void onClipRegion(const SkRegion&, SkRegion::Op) override;
75 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* ); 72 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint* );
76 virtual void didSetMatrix(const SkMatrix&) override; 73 virtual void didSetMatrix(const SkMatrix&) override;
77 virtual void didConcat(const SkMatrix&) override; 74 virtual void didConcat(const SkMatrix&) override;
78 virtual void willSave() override; 75 virtual void willSave() override;
79 SaveLayerStrategy willSaveLayer(const SkRect* bounds, const SkPaint*, SaveFl ags) override; 76 SaveLayerStrategy willSaveLayer(const SkRect* bounds, const SkPaint*, SaveFl ags) override;
80 virtual void willRestore() override; 77 virtual void willRestore() override;
81 78
82 private: 79 private:
83 unsigned m_fromStep; 80 unsigned m_fromStep;
84 unsigned m_toStep; 81 unsigned m_toStep;
85 unsigned m_stepCount; 82 unsigned m_stepCount;
86 bool m_abortDrawing; 83 bool m_abortDrawing;
87 void updateInRange(); 84 void updateInRange();
88 friend class AutoReplayer; 85 friend class AutoReplayer;
89 }; 86 };
90 87
91 } // namespace blink 88 } // namespace blink
92 89
93 #endif // SKY_ENGINE_PLATFORM_GRAPHICS_REPLAYINGCANVAS_H_ 90 #endif // SKY_ENGINE_PLATFORM_GRAPHICS_REPLAYINGCANVAS_H_
OLDNEW
« no previous file with comments | « sky/engine/platform/graphics/ProfilingCanvas.cpp ('k') | sky/engine/platform/graphics/ReplayingCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine