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

Side by Side Diff: gm/drawbitmaprect.cpp

Issue 821083002: add newImage API (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: add gm Created 5 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | gm/image.cpp » ('j') | gm/image.cpp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1
2 /* 1 /*
3 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
4 * 3 *
5 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkBlurMask.h" 9 #include "SkBlurMask.h"
10 #include "SkBlurMaskFilter.h" 10 #include "SkBlurMaskFilter.h"
11 #include "SkColorPriv.h" 11 #include "SkColorPriv.h"
12 #include "SkGradientShader.h" 12 #include "SkGradientShader.h"
13 #include "SkShader.h" 13 #include "SkShader.h"
14 14 #include "SkImage.h"
15 namespace skiagm {
16 15
17 static SkBitmap make_chessbm(int w, int h) { 16 static SkBitmap make_chessbm(int w, int h) {
18 SkBitmap bm; 17 SkBitmap bm;
19 bm.allocN32Pixels(w, h); 18 bm.allocN32Pixels(w, h);
20 19
21 for (int y = 0; y < bm.height(); y++) { 20 for (int y = 0; y < bm.height(); y++) {
22 uint32_t* p = bm.getAddr32(0, y); 21 uint32_t* p = bm.getAddr32(0, y);
23 for (int x = 0; x < bm.width(); x++) { 22 for (int x = 0; x < bm.width(); x++) {
24 p[x] = ((x + y) & 1) ? SK_ColorWHITE : SK_ColorBLACK; 23 p[x] = ((x + y) & 1) ? SK_ColorWHITE : SK_ColorBLACK;
25 } 24 }
26 } 25 }
27 bm.unlockPixels(); 26 bm.unlockPixels();
28 return bm; 27 return bm;
29 } 28 }
30 29
31 static void makebm(SkBitmap* bm, int w, int h) { 30 static SkImage* image_from_bitmap(const SkBitmap& bm) {
31 SkBitmap b(bm);
32 b.lockPixels();
33 return SkImage::NewRasterCopy(b.info(), b.getPixels(), b.rowBytes());
34 }
35
36 static SkImage* makebm(SkBitmap* bm, int w, int h) {
32 bm->allocN32Pixels(w, h); 37 bm->allocN32Pixels(w, h);
33 bm->eraseColor(SK_ColorTRANSPARENT); 38 bm->eraseColor(SK_ColorTRANSPARENT);
34 39
35 SkCanvas canvas(*bm); 40 SkCanvas canvas(*bm);
36 41
37 SkScalar wScalar = SkIntToScalar(w); 42 SkScalar wScalar = SkIntToScalar(w);
38 SkScalar hScalar = SkIntToScalar(h); 43 SkScalar hScalar = SkIntToScalar(h);
39 44
40 SkPoint pt = { wScalar / 2, hScalar / 2 }; 45 SkPoint pt = { wScalar / 2, hScalar / 2 };
41 46
(...skipping 21 matching lines...) Expand all
63 colors, pos, 68 colors, pos,
64 SK_ARRAY_COUNT(colors), 69 SK_ARRAY_COUNT(colors),
65 SkShader::kRepeat_TileMode, 70 SkShader::kRepeat_TileMode,
66 0, &mat))->unref(); 71 0, &mat))->unref();
67 canvas.drawRect(rect, paint); 72 canvas.drawRect(rect, paint);
68 rect.inset(wScalar / 8, hScalar / 8); 73 rect.inset(wScalar / 8, hScalar / 8);
69 mat.postScale(SK_Scalar1 / 4, SK_Scalar1 / 4); 74 mat.postScale(SK_Scalar1 / 4, SK_Scalar1 / 4);
70 } 75 }
71 // Let backends know we won't change this, so they don't have to deep copy i t defensively. 76 // Let backends know we won't change this, so they don't have to deep copy i t defensively.
72 bm->setImmutable(); 77 bm->setImmutable();
78
79 return image_from_bitmap(*bm);
73 } 80 }
74 81
82 static void canvasproc(SkCanvas* canvas, SkImage*, const SkBitmap& bm, const SkI Rect* srcR,
83 const SkRect& dstR) {
84 canvas->drawBitmapRect(bm, srcR, dstR);
85 }
86
87 static void imageproc(SkCanvas* canvas, SkImage* image, const SkBitmap&, const S kIRect* srcIR,
88 const SkRect& dstR) {
89 SkRect storage, *srcR = NULL;
90 if (srcIR) {
91 storage.set(*srcIR);
92 srcR = &storage;
93 }
94 canvas->drawImageRect(image, srcR, dstR);
95 }
96
97 static void imagescaleproc(SkCanvas* canvas, SkImage* image, const SkBitmap&, co nst SkIRect* srcIR,
98 const SkRect& dstR) {
99 const int newW = SkScalarRoundToInt(dstR.width());
100 const int newH = SkScalarRoundToInt(dstR.height());
101 SkAutoTUnref<SkImage> newImage(image->newImage(newW, newH, srcIR));
102 if (newImage) {
103 canvas->drawImage(newImage, dstR.x(), dstR.y());
104 }
105 }
106
107 typedef void DrawRectRectProc(SkCanvas*, SkImage*, const SkBitmap&, const SkIRec t*, const SkRect&);
108
75 static const int gSize = 1024; 109 static const int gSize = 1024;
76 110
77 class DrawBitmapRectGM : public GM { 111 class DrawBitmapRectGM : public skiagm::GM {
78 public: 112 public:
79 DrawBitmapRectGM() { 113 DrawBitmapRectGM(DrawRectRectProc proc, const char suffix[]) : fProc(proc) {
114 fName.set("drawbitmaprect");
115 if (suffix) {
116 fName.append(suffix);
117 }
80 } 118 }
81 119
82 SkBitmap fLargeBitmap; 120 DrawRectRectProc* fProc;
121 SkBitmap fLargeBitmap;
122 SkAutoTUnref<SkImage> fImage;
123 SkString fName;
83 124
84 protected: 125 protected:
85 SkString onShortName() { 126 SkString onShortName() SK_OVERRIDE { return fName; }
86 return SkString("drawbitmaprect");
87 }
88 127
89 SkISize onISize() { return SkISize::Make(gSize, gSize); } 128 SkISize onISize() SK_OVERRIDE { return SkISize::Make(gSize, gSize); }
90 129
91 virtual void onDraw(SkCanvas* canvas) { 130 void onDraw(SkCanvas* canvas) SK_OVERRIDE {
92 static const int kBmpSize = 2048; 131 static const int kBmpSize = 2048;
93 if (fLargeBitmap.isNull()) { 132 if (fLargeBitmap.isNull()) {
94 makebm(&fLargeBitmap, kBmpSize, kBmpSize); 133 fImage.reset(makebm(&fLargeBitmap, kBmpSize, kBmpSize));
95 } 134 }
96 SkRect dstRect = { 0, 0, SkIntToScalar(64), SkIntToScalar(64)}; 135 SkRect dstRect = { 0, 0, SkIntToScalar(64), SkIntToScalar(64)};
97 static const int kMaxSrcRectSize = 1 << (SkNextLog2(kBmpSize) + 2); 136 static const int kMaxSrcRectSize = 1 << (SkNextLog2(kBmpSize) + 2);
98 137
99 static const int kPadX = 30; 138 static const int kPadX = 30;
100 static const int kPadY = 40; 139 static const int kPadY = 40;
101 SkPaint paint; 140 SkPaint paint;
102 paint.setAlpha(0x20); 141 paint.setAlpha(0x20);
103 canvas->drawBitmapRect(fLargeBitmap, NULL, 142 canvas->drawBitmapRect(fLargeBitmap, NULL,
104 SkRect::MakeWH(gSize * SK_Scalar1, 143 SkRect::MakeWH(gSize * SK_Scalar1,
(...skipping 14 matching lines...) Expand all
119 158
120 canvas->translate(0, SK_Scalar1 * kPadY / 2 + titleHeight); 159 canvas->translate(0, SK_Scalar1 * kPadY / 2 + titleHeight);
121 int rowCount = 0; 160 int rowCount = 0;
122 canvas->save(); 161 canvas->save();
123 for (int w = 1; w <= kMaxSrcRectSize; w *= 4) { 162 for (int w = 1; w <= kMaxSrcRectSize; w *= 4) {
124 for (int h = 1; h <= kMaxSrcRectSize; h *= 4) { 163 for (int h = 1; h <= kMaxSrcRectSize; h *= 4) {
125 164
126 SkIRect srcRect = SkIRect::MakeXYWH((kBmpSize - w) / 2, 165 SkIRect srcRect = SkIRect::MakeXYWH((kBmpSize - w) / 2,
127 (kBmpSize - h) / 2, 166 (kBmpSize - h) / 2,
128 w, h); 167 w, h);
129 canvas->drawBitmapRect(fLargeBitmap, &srcRect, dstRect); 168 fProc(canvas, fImage, fLargeBitmap, &srcRect, dstRect);
130 169
131 SkString label; 170 SkString label;
132 label.appendf("%d x %d", w, h); 171 label.appendf("%d x %d", w, h);
133 blackPaint.setAntiAlias(true); 172 blackPaint.setAntiAlias(true);
134 blackPaint.setStyle(SkPaint::kFill_Style); 173 blackPaint.setStyle(SkPaint::kFill_Style);
135 blackPaint.setTextSize(SK_Scalar1 * 10); 174 blackPaint.setTextSize(SK_Scalar1 * 10);
136 SkScalar baseline = dstRect.height() + 175 SkScalar baseline = dstRect.height() +
137 blackPaint.getTextSize() + SK_Scalar1 * 3; 176 blackPaint.getTextSize() + SK_Scalar1 * 3;
138 canvas->drawText(label.c_str(), label.size(), 177 canvas->drawText(label.c_str(), label.size(),
139 0, baseline, 178 0, baseline,
(...skipping 29 matching lines...) Expand all
169 kNormal_SkBlurStyle, 208 kNormal_SkBlurStyle,
170 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)), 209 SkBlurMask::ConvertRadiusToSigma(SkIntToScalar(5)),
171 SkBlurMaskFilter::kHighQuality_BlurFlag | 210 SkBlurMaskFilter::kHighQuality_BlurFlag |
172 SkBlurMaskFilter::kIgnoreTransform_BlurFlag); 211 SkBlurMaskFilter::kIgnoreTransform_BlurFlag);
173 paint.setMaskFilter(mf)->unref(); 212 paint.setMaskFilter(mf)->unref();
174 canvas->drawBitmapRect(bm, &srcRect, dstRect, &paint); 213 canvas->drawBitmapRect(bm, &srcRect, dstRect, &paint);
175 } 214 }
176 } 215 }
177 216
178 private: 217 private:
179 typedef GM INHERITED; 218 typedef skiagm::GM INHERITED;
180 }; 219 };
181 220
182 ////////////////////////////////////////////////////////////////////////////// 221 DEF_GM( return new DrawBitmapRectGM(canvasproc, NULL); )
183 222 DEF_GM( return new DrawBitmapRectGM(imageproc, "_imagerect"); )
184 static GM* MyFactory(void*) { return new DrawBitmapRectGM; } 223 DEF_GM( return new DrawBitmapRectGM(imagescaleproc, "imagescale"); )
185 static GMRegistry reg(MyFactory);
186 }
OLDNEW
« no previous file with comments | « no previous file | gm/image.cpp » ('j') | gm/image.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698