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

Unified Diff: gm/tiledscaledbitmap.cpp

Issue 675823002: Fix the way we patch up the matrix for scaled images that aren't (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: don't tile the new GM Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gyp/gmslides.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gm/tiledscaledbitmap.cpp
diff --git a/gm/tiledscaledbitmap.cpp b/gm/tiledscaledbitmap.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..3ea110c44f6da21304638cb662c92a5e6c560b8b
--- /dev/null
+++ b/gm/tiledscaledbitmap.cpp
@@ -0,0 +1,88 @@
+
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+#include "gm.h"
+
+#include "Resources.h"
tfarina 2014/10/30 15:30:16 looks like it is unused after make_bm().
+#include "SkBitmap.h"
+#include "SkImageDecoder.h"
+#include "SkPaint.h"
+#include "SkShader.h"
+#include "SkStream.h"
+
+
+ /***
+ *
+ * This GM reproduces Skia bug 2904, in which a tiled bitmap shader was failing to draw correctly
+ * when fractional image scaling was ignored by the high quality bitmap scaler.
+ *
+ ***/
+
+namespace skiagm {
+
+class TiledScaledBitmapGM : public GM {
+public:
+
+ TiledScaledBitmapGM() {
+ }
+
+protected:
+ virtual SkString onShortName() {
tfarina 2014/10/30 15:30:16 SK_OVERRIDE?
+ return SkString("tiledscaledbitmap");
+ }
+
+ virtual SkISize onISize() {
tfarina 2014/10/30 15:30:16 SK_OVERRIDE?
+ return SkISize::Make(1016, 616);
+ }
+
+ virtual uint32_t onGetFlags() const SK_OVERRIDE {
+ return kSkipTiled_Flag;
+ }
+
+ static SkBitmap make_bm(int width, int height) {
+ SkBitmap bm;
+ bm.allocN32Pixels(width, height);
+ bm.eraseColor(SK_ColorTRANSPARENT);
+ SkCanvas canvas(bm);
+ SkPaint paint;
+ paint.setAntiAlias(true);
+ canvas.drawCircle(width/2.f, height/2.f, width/4.f, paint);
+ return bm;
+ }
+
+ virtual void onOnceBeforeDraw() SK_OVERRIDE {
+ fBitmap = make_bm(360, 288);
+ }
+
+ virtual void onDraw(SkCanvas* canvas) {
tfarina 2014/10/30 15:30:16 SK_OVERRIDE?
+ SkPaint paint;
+
+ paint.setAntiAlias(true);
+ paint.setFilterLevel(SkPaint::kHigh_FilterLevel);
+
+ SkMatrix mat;
+ mat.setScale(121.f/360.f, 93.f/288.f);
+ mat.postTranslate(-72, -72);
+
+ SkShader *shader = SkShader::CreateBitmapShader(fBitmap, SkShader::kRepeat_TileMode, SkShader::kRepeat_TileMode, &mat);
+ paint.setShader(shader);
+
+ SkSafeUnref(shader);
+ canvas->drawRectCoords(8,8,1008, 608, paint);
+ }
+
+private:
+ SkBitmap fBitmap;
+
+ typedef GM INHERITED;
+};
+
+//////////////////////////////////////////////////////////////////////////////
+
+DEF_GM(return SkNEW(TiledScaledBitmapGM);)
+
+}
« no previous file with comments | « no previous file | gyp/gmslides.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698