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

Unified Diff: gm/lcdtext.cpp

Issue 741433003: Add an image filter row to GM:lcdtextprops (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update onISize() Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/lcdtext.cpp
diff --git a/gm/lcdtext.cpp b/gm/lcdtext.cpp
index 3fe9fa2fbc179c5f8e504aa7a6dd0b2fa9b0504f..a6e31bce5f4c8be632cb764915fcd7554ba110fd 100644
--- a/gm/lcdtext.cpp
+++ b/gm/lcdtext.cpp
@@ -11,6 +11,11 @@
#include "gm.h"
#include "SkCanvas.h"
+#include "SkPicture.h"
+#include "SkPictureImageFilter.h"
+#include "SkPictureRecorder.h"
+#include "SkSurface.h"
+
class LcdTextGM : public skiagm::GM {
public:
@@ -121,8 +126,6 @@ private:
typedef skiagm::GM INHERITED;
};
-#include "SkSurface.h"
-
// ensure that we respect the SkPixelGeometry in SurfaceProps
class LcdTextProps : public skiagm::GM {
static void DrawText(SkCanvas* canvas) {
@@ -137,34 +140,66 @@ class LcdTextProps : public skiagm::GM {
canvas->restore();
}
+ static SkSurface* MakeSurface(SkCanvas* canvas, const SkImageInfo& info, SkPixelGeometry geo) {
+ SkSurfaceProps props = SkSurfaceProps(0, geo);
+ SkSurface* surface = canvas->newSurface(info, &props);
+
+ if (!surface) {
+ surface = SkSurface::NewRaster(info, &props);
+ }
+
+ return surface;
+ }
+
protected:
SkString onShortName() SK_OVERRIDE {
return SkString("lcdtextprops");
}
- SkISize onISize() SK_OVERRIDE { return SkISize::Make(230, 120); }
+ SkISize onISize() SK_OVERRIDE { return SkISize::Make(230, 230); }
uint32_t onGetFlags() const SK_OVERRIDE {
return kSkip565_Flag;
}
+ virtual void onOnceBeforeDraw() SK_OVERRIDE {
+ fInfo = SkImageInfo::MakeN32Premul(100, 100);
+ SkPictureRecorder recorder;
+ DrawText(recorder.beginRecording(SkIntToScalar(fInfo.width()),
+ SkIntToScalar(fInfo.height())));
+ SkAutoTUnref<SkPicture> pic(recorder.endRecording());
+ SkAutoTUnref<SkImageFilter> filter(SkPictureImageFilter::Create(pic.get()));
+ fFilterPaint.setImageFilter(filter.get());
+ }
+
virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
const SkPixelGeometry geos[] = {
kRGB_H_SkPixelGeometry,
kUnknown_SkPixelGeometry,
};
- const SkImageInfo info = SkImageInfo::MakeN32Premul(100, 100);
for (size_t i = 0; i < SK_ARRAY_COUNT(geos); ++i) {
- SkSurfaceProps props = SkSurfaceProps(0, geos[i]);
- SkAutoTUnref<SkSurface> surf(canvas->newSurface(info, &props));
- if (!surf) {
- surf.reset(SkSurface::NewRaster(info, &props));
- }
+ SkAutoTUnref<SkSurface> surf(MakeSurface(canvas, fInfo, geos[i]));
DrawText(surf->getCanvas());
- surf->draw(canvas, SkIntToScalar(i * (info.width() + 10)), 0, NULL);
+ surf->draw(canvas, SkIntToScalar(i * (fInfo.width() + 10)), 0, NULL);
+ }
+
+ for (size_t i = 0; i < SK_ARRAY_COUNT(geos); ++i) {
+ SkAutoTUnref<SkSurface> surf(MakeSurface(canvas, fInfo, geos[i]));
+ surf->getCanvas()->saveLayer(NULL, &fFilterPaint);
+ surf->getCanvas()->restore();
+ surf->draw(canvas,
+ SkIntToScalar(i * (fInfo.width() + 10)),
+ SkIntToScalar(fInfo.height() + 10),
+ NULL);
}
}
+
+private:
+ SkPaint fFilterPaint;
+ SkImageInfo fInfo;
+
+ typedef skiagm::GM INHERITED;
};
///////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698