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

Side by Side Diff: gm/image.cpp

Issue 19729007: Add SkImage->draw() call with src and dst rects. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/core/SkImage.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * 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
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkSurface.h" 9 #include "SkSurface.h"
10 #include "SkCanvas.h" 10 #include "SkCanvas.h"
(...skipping 18 matching lines...) Expand all
29 stream.read(mem, size); 29 stream.read(mem, size);
30 return SkData::NewFromMalloc(mem, size); 30 return SkData::NewFromMalloc(mem, size);
31 } 31 }
32 32
33 static void drawJpeg(SkCanvas* canvas, const SkISize& size) { 33 static void drawJpeg(SkCanvas* canvas, const SkISize& size) {
34 // TODO: Make this draw a file that is checked in, so it can 34 // TODO: Make this draw a file that is checked in, so it can
35 // be exercised on machines other than mike's. Will require a 35 // be exercised on machines other than mike's. Will require a
36 // rebaseline. 36 // rebaseline.
37 SkAutoDataUnref data(fileToData("/Users/mike/Downloads/skia.google.jpeg")); 37 SkAutoDataUnref data(fileToData("/Users/mike/Downloads/skia.google.jpeg"));
38 SkImage* image = SkImage::NewEncodedData(data); 38 SkImage* image = SkImage::NewEncodedData(data);
39
39 if (image) { 40 if (image) {
41 SkRect dst;
42 dst.iset(0, 0, size.width(), size.height());
43
40 SkAutoCanvasRestore acr(canvas, true); 44 SkAutoCanvasRestore acr(canvas, true);
41 canvas->scale(size.width() * 1.0f / image->width(), 45 canvas->scale(size.width() * 1.0f / image->width(),
reed1 2013/07/22 17:21:51 Do you need this canvas scale in the case where we
42 size.height() * 1.0f / image->height()); 46 size.height() * 1.0f / image->height());
43 image->draw(canvas,0, 0, NULL); 47 image->draw(canvas, 0, 0, NULL);
48 image->draw(canvas, NULL, dst, NULL);
reed1 2013/07/22 17:21:51 Hmmm, now you're not exercising passing a non-null
44 image->unref(); 49 image->unref();
45 } 50 }
46 } 51 }
47 52
48 static void drawContents(SkSurface* surface, SkColor fillC) { 53 static void drawContents(SkSurface* surface, SkColor fillC) {
49 SkSize size = SkSize::Make(SkIntToScalar(surface->width()), 54 SkSize size = SkSize::Make(SkIntToScalar(surface->width()),
50 SkIntToScalar(surface->height())); 55 SkIntToScalar(surface->height()));
51 SkCanvas* canvas = surface->getCanvas(); 56 SkCanvas* canvas = surface->getCanvas();
52 57
53 SkScalar stroke = size.fWidth / 10; 58 SkScalar stroke = size.fWidth / 10;
54 SkScalar radius = (size.fWidth - stroke) / 2; 59 SkScalar radius = (size.fWidth - stroke) / 2;
55 60
56 SkPaint paint; 61 SkPaint paint;
57 62
58 paint.setAntiAlias(true); 63 paint.setAntiAlias(true);
59 paint.setColor(fillC); 64 paint.setColor(fillC);
60 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint); 65 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint);
61 66
62 paint.setStyle(SkPaint::kStroke_Style); 67 paint.setStyle(SkPaint::kStroke_Style);
63 paint.setStrokeWidth(stroke); 68 paint.setStrokeWidth(stroke);
64 paint.setColor(SK_ColorBLACK); 69 paint.setColor(SK_ColorBLACK);
65 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint); 70 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint);
66 } 71 }
67 72
68 static void test_surface(SkCanvas* canvas, SkSurface* surf) { 73 static void test_surface(SkCanvas* canvas, SkSurface* surf, bool usePaint) {
69 drawContents(surf, SK_ColorRED); 74 drawContents(surf, SK_ColorRED);
70 SkImage* imgR = surf->newImageSnapshot(); 75 SkImage* imgR = surf->newImageSnapshot();
71 76
72 if (true) { 77 if (true) {
73 SkImage* imgR2 = surf->newImageSnapshot(); 78 SkImage* imgR2 = surf->newImageSnapshot();
74 SkASSERT(imgR == imgR2); 79 SkASSERT(imgR == imgR2);
75 imgR2->unref(); 80 imgR2->unref();
76 } 81 }
77 82
78 drawContents(surf, SK_ColorGREEN); 83 drawContents(surf, SK_ColorGREEN);
79 SkImage* imgG = surf->newImageSnapshot(); 84 SkImage* imgG = surf->newImageSnapshot();
80 85
81 // since we've drawn after we snapped imgR, imgG will be a different obj 86 // since we've drawn after we snapped imgR, imgG will be a different obj
82 SkASSERT(imgR != imgG); 87 SkASSERT(imgR != imgG);
83 88
84 drawContents(surf, SK_ColorBLUE); 89 drawContents(surf, SK_ColorBLUE);
85 90
86 SkPaint paint; 91 SkPaint paint;
87 // paint.setFilterBitmap(true); 92 // paint.setFilterBitmap(true);
88 // paint.setAlpha(0x80); 93 // paint.setAlpha(0x80);
89 94
90 imgR->draw(canvas, 0, 0, &paint); 95 imgR->draw(canvas, 0, 0, usePaint ? &paint : NULL);
91 imgG->draw(canvas, 0, 80, &paint); 96 imgG->draw(canvas, 0, 80, usePaint ? &paint : NULL);
92 surf->draw(canvas, 0, 160, &paint); 97 surf->draw(canvas, 0, 160, usePaint ? &paint : NULL);
98
99 SkRect src1, src2, src3;
100 src1.iset(0, 0, surf->width(), surf->height());
101 src2.iset(-surf->width() / 2, -surf->height() / 2,
102 surf->width(), surf->height());
103 src3.iset(0, 0, surf->width() / 2, surf->height() / 2);
104
105 SkRect dst1, dst2, dst3, dst4;
106 dst1.set(0, 240, 65, 305);
107 dst2.set(0, 320, 65, 385);
108 dst3.set(10, 410, 45, 445);
109 dst4.set(0, 480, 65, 545);
110
111 imgR->draw(canvas, &src1, dst1, usePaint ? &paint : NULL);
112 imgG->draw(canvas, &src2, dst2, usePaint ? &paint : NULL);
113 imgR->draw(canvas, &src3, dst3, usePaint ? &paint : NULL);
114 imgG->draw(canvas, NULL, dst4, usePaint ? &paint : NULL);
93 115
94 imgG->unref(); 116 imgG->unref();
95 imgR->unref(); 117 imgR->unref();
96 } 118 }
97 119
98 class ImageGM : public skiagm::GM { 120 class ImageGM : public skiagm::GM {
99 void* fBuffer; 121 void* fBuffer;
100 size_t fBufferSize; 122 size_t fBufferSize;
101 SkSize fSize; 123 SkSize fSize;
102 enum { 124 enum {
(...skipping 12 matching lines...) Expand all
115 sk_free(fBuffer); 137 sk_free(fBuffer);
116 } 138 }
117 139
118 140
119 protected: 141 protected:
120 virtual SkString onShortName() { 142 virtual SkString onShortName() {
121 return SkString("image-surface"); 143 return SkString("image-surface");
122 } 144 }
123 145
124 virtual SkISize onISize() { 146 virtual SkISize onISize() {
125 return SkISize::Make(800, 500); 147 return SkISize::Make(960, 1200);
126 } 148 }
127 149
128 virtual void onDraw(SkCanvas* canvas) { 150 virtual void onDraw(SkCanvas* canvas) {
129 drawJpeg(canvas, this->getISize()); 151 drawJpeg(canvas, this->getISize());
130 152
131 canvas->scale(2, 2); 153 canvas->scale(2, 2);
132 154
133 static const char* kLabel1 = "Original Img"; 155 static const char* kLabel1 = "Original Img";
134 static const char* kLabel2 = "Modified Img"; 156 static const char* kLabel2 = "Modified Img";
135 static const char* kLabel3 = "Cur Surface"; 157 static const char* kLabel3 = "Cur Surface";
158 static const char* kLabel4 = "Full Crop";
159 static const char* kLabel5 = "Over-crop";
160 static const char* kLabel6 = "Upper-left";
161 static const char* kLabel7 = "No Crop";
136 162
137 static const char* kLabel4 = "Pre-Alloc Img"; 163 static const char* kLabel8 = "Pre-Alloc Img";
138 static const char* kLabel5 = "New Alloc Img"; 164 static const char* kLabel9 = "New Alloc Img";
139 static const char* kLabel6 = "SkPicture"; 165 static const char* kLabel10 = "SkPicture";
140 static const char* kLabel7 = "GPU"; 166 static const char* kLabel11 = "Null Paint";
167 static const char* kLabel12 = "GPU";
141 168
142 SkPaint textPaint; 169 SkPaint textPaint;
143 170
144 canvas->drawText(kLabel1, strlen(kLabel1), 10, 60, textPaint); 171 canvas->drawText(kLabel1, strlen(kLabel1), 10, 60, textPaint);
145 canvas->drawText(kLabel2, strlen(kLabel2), 10, 140, textPaint); 172 canvas->drawText(kLabel2, strlen(kLabel2), 10, 140, textPaint);
146 canvas->drawText(kLabel3, strlen(kLabel3), 10, 220, textPaint); 173 canvas->drawText(kLabel3, strlen(kLabel3), 10, 220, textPaint);
174 canvas->drawText(kLabel4, strlen(kLabel4), 10, 300, textPaint);
175 canvas->drawText(kLabel5, strlen(kLabel5), 10, 380, textPaint);
176 canvas->drawText(kLabel6, strlen(kLabel6), 10, 460, textPaint);
177 canvas->drawText(kLabel7, strlen(kLabel7), 10, 540, textPaint);
147 178
148 canvas->drawText(kLabel4, strlen(kLabel4), 80, 10, textPaint); 179 canvas->drawText(kLabel8, strlen(kLabel8), 80, 10, textPaint);
149 canvas->drawText(kLabel5, strlen(kLabel5), 160, 10, textPaint); 180 canvas->drawText(kLabel9, strlen(kLabel9), 160, 10, textPaint);
150 canvas->drawText(kLabel6, strlen(kLabel6), 250, 10, textPaint); 181 canvas->drawText(kLabel10, strlen(kLabel10), 250, 10, textPaint);
151 canvas->drawText(kLabel7, strlen(kLabel7), 340, 10, textPaint); 182 canvas->drawText(kLabel11, strlen(kLabel11), 320, 10, textPaint);
183 canvas->drawText(kLabel12, strlen(kLabel12), 410, 10, textPaint);
152 184
153 canvas->translate(80, 20); 185 canvas->translate(80, 20);
154 186
155 // since we draw into this directly, we need to start fresh 187 // since we draw into this directly, we need to start fresh
156 sk_bzero(fBuffer, fBufferSize); 188 sk_bzero(fBuffer, fBufferSize);
157 189
158 SkImage::Info info; 190 SkImage::Info info;
159 191
160 info.fWidth = W; 192 info.fWidth = W;
161 info.fHeight = H; 193 info.fHeight = H;
162 info.fColorType = SkImage::kPMColor_ColorType; 194 info.fColorType = SkImage::kPMColor_ColorType;
163 info.fAlphaType = SkImage::kPremul_AlphaType; 195 info.fAlphaType = SkImage::kPremul_AlphaType;
164 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRasterDirect(info, fBuffer, RB)); 196 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRasterDirect(info, fBuffer, RB));
165 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info)); 197 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info));
166 SkAutoTUnref<SkSurface> surf2(SkSurface::NewPicture(info.fWidth, info.fH eight)); 198 SkAutoTUnref<SkSurface> surf2(SkSurface::NewPicture(info.fWidth, info.fH eight));
199 SkAutoTUnref<SkSurface> surf3(SkSurface::NewPicture(info.fWidth, info.fH eight));
167 #if SK_SUPPORT_GPU 200 #if SK_SUPPORT_GPU
168 GrContext* ctx = skiagm::GetGr(); 201 GrContext* ctx = skiagm::GetGr();
169 202
170 SkAutoTUnref<SkSurface> surf3(SkSurface::NewRenderTarget(ctx, info, 0)); 203 SkAutoTUnref<SkSurface> surf4(SkSurface::NewRenderTarget(ctx, info, 0));
171 #endif 204 #endif
172 205
173 test_surface(canvas, surf0); 206 test_surface(canvas, surf0, true);
174 canvas->translate(80, 0); 207 canvas->translate(80, 0);
175 test_surface(canvas, surf1); 208 test_surface(canvas, surf1, true);
176 canvas->translate(80, 0); 209 canvas->translate(80, 0);
177 test_surface(canvas, surf2); 210 test_surface(canvas, surf2, true);
211 canvas->translate(80, 0);
212 test_surface(canvas, surf3, false);
178 #if SK_SUPPORT_GPU 213 #if SK_SUPPORT_GPU
179 if (NULL != ctx) { 214 if (NULL != ctx) {
180 canvas->translate(80, 0); 215 canvas->translate(80, 0);
181 test_surface(canvas, surf3); 216 test_surface(canvas, surf4, true);
182 } 217 }
183 #endif 218 #endif
184 } 219 }
185 220
186 virtual uint32_t onGetFlags() const SK_OVERRIDE { 221 virtual uint32_t onGetFlags() const SK_OVERRIDE {
187 return GM::kSkipPicture_Flag | GM::kSkipPipe_Flag; 222 return GM::kSkipPicture_Flag | GM::kSkipPipe_Flag;
188 } 223 }
189 224
190 private: 225 private:
191 typedef skiagm::GM INHERITED; 226 typedef skiagm::GM INHERITED;
192 }; 227 };
193 228
194 ////////////////////////////////////////////////////////////////////////////// 229 //////////////////////////////////////////////////////////////////////////////
195 230
196 static skiagm::GM* MyFactory(void*) { return new ImageGM; } 231 static skiagm::GM* MyFactory(void*) { return new ImageGM; }
197 static skiagm::GMRegistry reg(MyFactory); 232 static skiagm::GMRegistry reg(MyFactory);
OLDNEW
« no previous file with comments | « no previous file | include/core/SkImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698