Home | History | Annotate | Download | only in core

Lines Matching refs:SkLiteRecorder

9 #include "SkLiteRecorder.h"
12 SkLiteRecorder::SkLiteRecorder()
16 void SkLiteRecorder::reset(SkLiteDL* dl, const SkIRect& bounds) {
21 sk_sp<SkSurface> SkLiteRecorder::onNewSurface(const SkImageInfo&, const SkSurfaceProps&) {
26 SkDrawFilter* SkLiteRecorder::setDrawFilter(SkDrawFilter* df) {
32 void SkLiteRecorder::onFlush() { fDL->flush(); }
34 void SkLiteRecorder::willSave() { fDL->save(); }
35 SkCanvas::SaveLayerStrategy SkLiteRecorder::getSaveLayerStrategy(const SaveLayerRec& rec) {
40 void SkLiteRecorder::willRestore() { fDL->restore(); }
42 void SkLiteRecorder::didConcat (const SkMatrix& matrix) { fDL-> concat(matrix); }
43 void SkLiteRecorder::didSetMatrix(const SkMatrix& matrix) { fDL->setMatrix(matrix); }
44 void SkLiteRecorder::didTranslate(SkScalar dx, SkScalar dy) { fDL->translate(dx, dy); }
46 void SkLiteRecorder::onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle style) {
50 void SkLiteRecorder::onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle style) {
54 void SkLiteRecorder::onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle style) {
58 void SkLiteRecorder::onClipRegion(const SkRegion& region, SkClipOp op) {
63 void SkLiteRecorder::onDrawPaint(const SkPaint& paint) {
66 void SkLiteRecorder::onDrawPath(const SkPath& path, const SkPaint& paint) {
69 void SkLiteRecorder::onDrawRect(const SkRect& rect, const SkPaint& paint) {
72 void SkLiteRecorder::onDrawRegion(const SkRegion& region, const SkPaint& paint) {
75 void SkLiteRecorder::onDrawOval(const SkRect& oval, const SkPaint& paint) {
78 void SkLiteRecorder::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
82 void SkLiteRecorder::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
85 void SkLiteRecorder::onDrawDRRect(const SkRRect& out, const SkRRect& in, const SkPaint& paint) {
89 void SkLiteRecorder::onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) {
92 void SkLiteRecorder::onDrawPicture(const SkPicture* picture,
97 void SkLiteRecorder::onDrawAnnotation(const SkRect& rect, const char key[], SkData* val) {
101 void SkLiteRecorder::onDrawText(const void* text, size_t bytes,
106 void SkLiteRecorder::onDrawPosText(const void* text, size_t bytes,
111 void SkLiteRecorder::onDrawPosTextH(const void* text, size_t bytes,
116 void SkLiteRecorder::onDrawTextOnPath(const void* text, size_t bytes,
121 void SkLiteRecorder::onDrawTextRSXform(const void* text, size_t bytes,
126 void SkLiteRecorder::onDrawTextBlob(const SkTextBlob* blob,
132 void SkLiteRecorder::onDrawBitmap(const SkBitmap& bm,
137 void SkLiteRecorder::onDrawBitmapNine(const SkBitmap& bm,
142 void SkLiteRecorder::onDrawBitmapRect(const SkBitmap& bm,
147 void SkLiteRecorder::onDrawBitmapLattice(const SkBitmap& bm,
153 void SkLiteRecorder::onDrawImage(const SkImage* img,
158 void SkLiteRecorder::onDrawImageNine(const SkImage* img,
163 void SkLiteRecorder::onDrawImageRect(const SkImage* img,
168 void SkLiteRecorder::onDrawImageLattice(const SkImage* img,
175 void SkLiteRecorder::onDrawPatch(const SkPoint cubics[12],
180 void SkLiteRecorder::onDrawPoints(SkCanvas::PointMode mode,
185 void SkLiteRecorder::onDrawVerticesObject(const SkVertices* vertices, SkBlendMode mode,
189 void SkLiteRecorder::onDrawAtlas(const SkImage* atlas,
199 void SkLiteRecorder::onDrawShadowRec(const SkPath& path, const SkDrawShadowRec& rec) {