aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Hal Canary <halcanary@google.com>2018-05-07 09:36:14 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-07 14:56:59 +0000
commit76e9485ffd718cc32bbf479cf02cdb9f6787c1f8 (patch)
treebc72f1fd2db49f323e2b4a7e1ebde19bdc7161aa /src/core
parent8a95244f626c2f7d4b66c8ca18266c2b0640bebb (diff)
SkRecorder: templates are better than macros
Change-Id: I594da617a0fc8970a01c2165e41cdd803173ffc5 Reviewed-on: https://skia-review.googlesource.com/126420 Reviewed-by: Mike Klein <mtklein@google.com> Commit-Queue: Hal Canary <halcanary@google.com>
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkRecorder.cpp86
-rw-r--r--src/core/SkRecorder.h3
2 files changed, 47 insertions, 42 deletions
diff --git a/src/core/SkRecorder.cpp b/src/core/SkRecorder.cpp
index 41441864ce..271300065e 100644
--- a/src/core/SkRecorder.cpp
+++ b/src/core/SkRecorder.cpp
@@ -66,11 +66,13 @@ void SkRecorder::forgetRecord() {
}
// To make appending to fRecord a little less verbose.
-#define APPEND(T, ...) \
- if (fMiniRecorder) { \
- this->flushMiniRecorder(); \
- } \
- new (fRecord->append<SkRecords::T>()) SkRecords::T{__VA_ARGS__}
+template<typename T, typename... Args>
+void SkRecorder::append(Args&&... args) {
+ if (fMiniRecorder) {
+ this->flushMiniRecorder();
+ }
+ new (fRecord->append<T>()) T{std::forward<Args>(args)...};
+}
#define TRY_MINIRECORDER(method, ...) \
if (fMiniRecorder && fMiniRecorder->method(__VA_ARGS__)) { return; }
@@ -130,40 +132,40 @@ void SkRecorder::flushMiniRecorder() {
}
void SkRecorder::onDrawPaint(const SkPaint& paint) {
- APPEND(DrawPaint, paint);
+ this->append<SkRecords::DrawPaint>(paint);
}
void SkRecorder::onDrawPoints(PointMode mode,
size_t count,
const SkPoint pts[],
const SkPaint& paint) {
- APPEND(DrawPoints, paint, mode, SkToUInt(count), this->copy(pts, count));
+ this->append<SkRecords::DrawPoints>(paint, mode, SkToUInt(count), this->copy(pts, count));
}
void SkRecorder::onDrawRect(const SkRect& rect, const SkPaint& paint) {
TRY_MINIRECORDER(drawRect, rect, paint);
- APPEND(DrawRect, paint, rect);
+ this->append<SkRecords::DrawRect>(paint, rect);
}
void SkRecorder::onDrawRegion(const SkRegion& region, const SkPaint& paint) {
- APPEND(DrawRegion, paint, region);
+ this->append<SkRecords::DrawRegion>(paint, region);
}
void SkRecorder::onDrawOval(const SkRect& oval, const SkPaint& paint) {
- APPEND(DrawOval, paint, oval);
+ this->append<SkRecords::DrawOval>(paint, oval);
}
void SkRecorder::onDrawArc(const SkRect& oval, SkScalar startAngle, SkScalar sweepAngle,
bool useCenter, const SkPaint& paint) {
- APPEND(DrawArc, paint, oval, startAngle, sweepAngle, useCenter);
+ this->append<SkRecords::DrawArc>(paint, oval, startAngle, sweepAngle, useCenter);
}
void SkRecorder::onDrawRRect(const SkRRect& rrect, const SkPaint& paint) {
- APPEND(DrawRRect, paint, rrect);
+ this->append<SkRecords::DrawRRect>(paint, rrect);
}
void SkRecorder::onDrawDRRect(const SkRRect& outer, const SkRRect& inner, const SkPaint& paint) {
- APPEND(DrawDRRect, paint, outer, inner);
+ this->append<SkRecords::DrawDRRect>(paint, outer, inner);
}
void SkRecorder::onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) {
@@ -172,7 +174,7 @@ void SkRecorder::onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) {
fDrawableList.reset(new SkDrawableList);
}
fDrawableList->append(drawable);
- APPEND(DrawDrawable, this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1);
+ this->append<SkRecords::DrawDrawable>(this->copy(matrix), drawable->getBounds(), fDrawableList->count() - 1);
} else {
SkASSERT(fDrawPictureMode == Playback_DrawPictureMode);
drawable->draw(this, matrix);
@@ -181,7 +183,7 @@ void SkRecorder::onDrawDrawable(SkDrawable* drawable, const SkMatrix* matrix) {
void SkRecorder::onDrawPath(const SkPath& path, const SkPaint& paint) {
TRY_MINIRECORDER(drawPath, path, paint);
- APPEND(DrawPath, paint, path);
+ this->append<SkRecords::DrawPath>(paint, path);
}
void SkRecorder::onDrawBitmap(const SkBitmap& bitmap,
@@ -223,24 +225,24 @@ void SkRecorder::onDrawBitmapLattice(const SkBitmap& bitmap, const Lattice& latt
void SkRecorder::onDrawImage(const SkImage* image, SkScalar left, SkScalar top,
const SkPaint* paint) {
- APPEND(DrawImage, this->copy(paint), sk_ref_sp(image), left, top);
+ this->append<SkRecords::DrawImage>(this->copy(paint), sk_ref_sp(image), left, top);
}
void SkRecorder::onDrawImageRect(const SkImage* image, const SkRect* src, const SkRect& dst,
const SkPaint* paint, SrcRectConstraint constraint) {
- APPEND(DrawImageRect, this->copy(paint), sk_ref_sp(image), this->copy(src), dst, constraint);
+ this->append<SkRecords::DrawImageRect>(this->copy(paint), sk_ref_sp(image), this->copy(src), dst, constraint);
}
void SkRecorder::onDrawImageNine(const SkImage* image, const SkIRect& center,
const SkRect& dst, const SkPaint* paint) {
- APPEND(DrawImageNine, this->copy(paint), sk_ref_sp(image), center, dst);
+ this->append<SkRecords::DrawImageNine>(this->copy(paint), sk_ref_sp(image), center, dst);
}
void SkRecorder::onDrawImageLattice(const SkImage* image, const Lattice& lattice, const SkRect& dst,
const SkPaint* paint) {
int flagCount = lattice.fRectTypes ? (lattice.fXCount + 1) * (lattice.fYCount + 1) : 0;
SkASSERT(lattice.fBounds);
- APPEND(DrawImageLattice, this->copy(paint), sk_ref_sp(image),
+ this->append<SkRecords::DrawImageLattice>(this->copy(paint), sk_ref_sp(image),
lattice.fXCount, this->copy(lattice.fXDivs, lattice.fXCount),
lattice.fYCount, this->copy(lattice.fYDivs, lattice.fYCount),
flagCount, this->copy(lattice.fRectTypes, flagCount),
@@ -249,14 +251,14 @@ void SkRecorder::onDrawImageLattice(const SkImage* image, const Lattice& lattice
void SkRecorder::onDrawText(const void* text, size_t byteLength,
SkScalar x, SkScalar y, const SkPaint& paint) {
- APPEND(DrawText,
+ this->append<SkRecords::DrawText>(
paint, this->copy((const char*)text, byteLength), byteLength, x, y);
}
void SkRecorder::onDrawPosText(const void* text, size_t byteLength,
const SkPoint pos[], const SkPaint& paint) {
const int points = paint.countText(text, byteLength);
- APPEND(DrawPosText,
+ this->append<SkRecords::DrawPosText>(
paint,
this->copy((const char*)text, byteLength),
byteLength,
@@ -266,7 +268,7 @@ void SkRecorder::onDrawPosText(const void* text, size_t byteLength,
void SkRecorder::onDrawPosTextH(const void* text, size_t byteLength,
const SkScalar xpos[], SkScalar constY, const SkPaint& paint) {
const int points = paint.countText(text, byteLength);
- APPEND(DrawPosTextH,
+ this->append<SkRecords::DrawPosTextH>(
paint,
this->copy((const char*)text, byteLength),
SkToUInt(byteLength),
@@ -276,7 +278,7 @@ void SkRecorder::onDrawPosTextH(const void* text, size_t byteLength,
void SkRecorder::onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
const SkMatrix* matrix, const SkPaint& paint) {
- APPEND(DrawTextOnPath,
+ this->append<SkRecords::DrawTextOnPath>(
paint,
this->copy((const char*)text, byteLength),
byteLength,
@@ -286,7 +288,7 @@ void SkRecorder::onDrawTextOnPath(const void* text, size_t byteLength, const SkP
void SkRecorder::onDrawTextRSXform(const void* text, size_t byteLength, const SkRSXform xform[],
const SkRect* cull, const SkPaint& paint) {
- APPEND(DrawTextRSXform,
+ this->append<SkRecords::DrawTextRSXform>(
paint,
this->copy((const char*)text, byteLength),
byteLength,
@@ -297,13 +299,13 @@ void SkRecorder::onDrawTextRSXform(const void* text, size_t byteLength, const Sk
void SkRecorder::onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
const SkPaint& paint) {
TRY_MINIRECORDER(drawTextBlob, blob, x, y, paint);
- APPEND(DrawTextBlob, paint, sk_ref_sp(blob), x, y);
+ this->append<SkRecords::DrawTextBlob>(paint, sk_ref_sp(blob), x, y);
}
void SkRecorder::onDrawPicture(const SkPicture* pic, const SkMatrix* matrix, const SkPaint* paint) {
if (fDrawPictureMode == Record_DrawPictureMode) {
fApproxBytesUsedBySubPictures += pic->approximateBytesUsed();
- APPEND(DrawPicture, this->copy(paint), sk_ref_sp(pic), matrix ? *matrix : SkMatrix::I());
+ this->append<SkRecords::DrawPicture>(this->copy(paint), sk_ref_sp(pic), matrix ? *matrix : SkMatrix::I());
} else {
SkASSERT(fDrawPictureMode == Playback_DrawPictureMode);
SkAutoCanvasMatrixPaint acmp(this, matrix, paint, pic->cullRect());
@@ -313,13 +315,13 @@ void SkRecorder::onDrawPicture(const SkPicture* pic, const SkMatrix* matrix, con
void SkRecorder::onDrawVerticesObject(const SkVertices* vertices, SkBlendMode bmode,
const SkPaint& paint) {
- APPEND(DrawVertices, paint, sk_ref_sp(const_cast<SkVertices*>(vertices)), bmode);
+ this->append<SkRecords::DrawVertices>(paint, sk_ref_sp(const_cast<SkVertices*>(vertices)), bmode);
}
void SkRecorder::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
const SkPoint texCoords[4], SkBlendMode bmode,
const SkPaint& paint) {
- APPEND(DrawPatch, paint,
+ this->append<SkRecords::DrawPatch>(paint,
cubics ? this->copy(cubics, SkPatchUtils::kNumCtrlPts) : nullptr,
colors ? this->copy(colors, SkPatchUtils::kNumCorners) : nullptr,
texCoords ? this->copy(texCoords, SkPatchUtils::kNumCorners) : nullptr,
@@ -329,7 +331,7 @@ void SkRecorder::onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
void SkRecorder::onDrawAtlas(const SkImage* atlas, const SkRSXform xform[], const SkRect tex[],
const SkColor colors[], int count, SkBlendMode mode,
const SkRect* cull, const SkPaint* paint) {
- APPEND(DrawAtlas, this->copy(paint),
+ this->append<SkRecords::DrawAtlas>(this->copy(paint),
sk_ref_sp(atlas),
this->copy(xform, count),
this->copy(tex, count),
@@ -340,23 +342,23 @@ void SkRecorder::onDrawAtlas(const SkImage* atlas, const SkRSXform xform[], cons
}
void SkRecorder::onDrawShadowRec(const SkPath& path, const SkDrawShadowRec& rec) {
- APPEND(DrawShadowRec, path, rec);
+ this->append<SkRecords::DrawShadowRec>(path, rec);
}
void SkRecorder::onDrawAnnotation(const SkRect& rect, const char key[], SkData* value) {
- APPEND(DrawAnnotation, rect, SkString(key), sk_ref_sp(value));
+ this->append<SkRecords::DrawAnnotation>(rect, SkString(key), sk_ref_sp(value));
}
void SkRecorder::onFlush() {
- APPEND(Flush);
+ this->append<SkRecords::Flush>();
}
void SkRecorder::willSave() {
- APPEND(Save);
+ this->append<SkRecords::Save>();
}
SkCanvas::SaveLayerStrategy SkRecorder::getSaveLayerStrategy(const SaveLayerRec& rec) {
- APPEND(SaveLayer, this->copy(rec.fBounds)
+ this->append<SkRecords::SaveLayer>(this->copy(rec.fBounds)
, this->copy(rec.fPaint)
, sk_ref_sp(rec.fBackdrop)
, sk_ref_sp(rec.fClipMask)
@@ -366,42 +368,42 @@ SkCanvas::SaveLayerStrategy SkRecorder::getSaveLayerStrategy(const SaveLayerRec&
}
void SkRecorder::didRestore() {
- APPEND(Restore, this->getTotalMatrix());
+ this->append<SkRecords::Restore>(this->getTotalMatrix());
}
void SkRecorder::didConcat(const SkMatrix& matrix) {
- APPEND(Concat, matrix);
+ this->append<SkRecords::Concat>(matrix);
}
void SkRecorder::didSetMatrix(const SkMatrix& matrix) {
- APPEND(SetMatrix, matrix);
+ this->append<SkRecords::SetMatrix>(matrix);
}
void SkRecorder::didTranslate(SkScalar dx, SkScalar dy) {
- APPEND(Translate, dx, dy);
+ this->append<SkRecords::Translate>(dx, dy);
}
void SkRecorder::onClipRect(const SkRect& rect, SkClipOp op, ClipEdgeStyle edgeStyle) {
INHERITED(onClipRect, rect, op, edgeStyle);
SkRecords::ClipOpAndAA opAA(op, kSoft_ClipEdgeStyle == edgeStyle);
- APPEND(ClipRect, rect, opAA);
+ this->append<SkRecords::ClipRect>(rect, opAA);
}
void SkRecorder::onClipRRect(const SkRRect& rrect, SkClipOp op, ClipEdgeStyle edgeStyle) {
INHERITED(onClipRRect, rrect, op, edgeStyle);
SkRecords::ClipOpAndAA opAA(op, kSoft_ClipEdgeStyle == edgeStyle);
- APPEND(ClipRRect, rrect, opAA);
+ this->append<SkRecords::ClipRRect>(rrect, opAA);
}
void SkRecorder::onClipPath(const SkPath& path, SkClipOp op, ClipEdgeStyle edgeStyle) {
INHERITED(onClipPath, path, op, edgeStyle);
SkRecords::ClipOpAndAA opAA(op, kSoft_ClipEdgeStyle == edgeStyle);
- APPEND(ClipPath, path, opAA);
+ this->append<SkRecords::ClipPath>(path, opAA);
}
void SkRecorder::onClipRegion(const SkRegion& deviceRgn, SkClipOp op) {
INHERITED(onClipRegion, deviceRgn, op);
- APPEND(ClipRegion, deviceRgn, op);
+ this->append<SkRecords::ClipRegion>(deviceRgn, op);
}
sk_sp<SkSurface> SkRecorder::onNewSurface(const SkImageInfo&, const SkSurfaceProps&) {
diff --git a/src/core/SkRecorder.h b/src/core/SkRecorder.h
index 9328d08424..6a7a83bdc2 100644
--- a/src/core/SkRecorder.h
+++ b/src/core/SkRecorder.h
@@ -146,6 +146,9 @@ private:
template <typename T>
T* copy(const T[], size_t count);
+ template<typename T, typename... Args>
+ void append(Args&&...);
+
DrawPictureMode fDrawPictureMode;
size_t fApproxBytesUsedBySubPictures;
SkRecord* fRecord;