blob: 3ed85f9bab7ca4653e6297ddec73e3d59c61b849 [file] [log] [blame]
mike@reedtribe.org70e35902012-07-29 20:38:16 +00001/*
2 * Copyright 2011 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9#include "SkSurface.h"
10#include "SkCanvas.h"
mike@reedtribe.orgd829b5c2012-07-31 03:57:11 +000011#include "SkStream.h"
12#include "SkData.h"
13
robertphillips@google.com97b6b072012-10-31 14:48:39 +000014#if SK_SUPPORT_GPU
15#include "GrContext.h"
16
17namespace skiagm {
reed@google.com97af1a62012-08-28 12:19:02 +000018extern GrContext* GetGr();
robertphillips@google.com97b6b072012-10-31 14:48:39 +000019};
20#endif
reed@google.com97af1a62012-08-28 12:19:02 +000021
mike@reedtribe.orgd829b5c2012-07-31 03:57:11 +000022static SkData* fileToData(const char path[]) {
23 SkFILEStream stream(path);
24 if (!stream.isValid()) {
25 return SkData::NewEmpty();
26 }
27 size_t size = stream.getLength();
28 void* mem = sk_malloc_throw(size);
29 stream.read(mem, size);
30 return SkData::NewFromMalloc(mem, size);
31}
32
33static void drawJpeg(SkCanvas* canvas, const SkISize& size) {
scroggo@google.comccd7afb2013-05-28 16:45:07 +000034 // 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
36 // rebaseline.
mike@reedtribe.orgd829b5c2012-07-31 03:57:11 +000037 SkAutoDataUnref data(fileToData("/Users/mike/Downloads/skia.google.jpeg"));
38 SkImage* image = SkImage::NewEncodedData(data);
39 if (image) {
40 SkAutoCanvasRestore acr(canvas, true);
41 canvas->scale(size.width() * 1.0f / image->width(),
42 size.height() * 1.0f / image->height());
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +000043 image->draw(canvas, 0, 0, NULL);
mike@reedtribe.orgd829b5c2012-07-31 03:57:11 +000044 image->unref();
45 }
46}
mike@reedtribe.org70e35902012-07-29 20:38:16 +000047
48static void drawContents(SkSurface* surface, SkColor fillC) {
skia.committer@gmail.com04ba4482012-09-07 02:01:30 +000049 SkSize size = SkSize::Make(SkIntToScalar(surface->width()),
robertphillips@google.com94acc702012-09-06 18:43:21 +000050 SkIntToScalar(surface->height()));
mike@reedtribe.orgd2782ed2012-07-31 02:45:15 +000051 SkCanvas* canvas = surface->getCanvas();
mike@reedtribe.org70e35902012-07-29 20:38:16 +000052
53 SkScalar stroke = size.fWidth / 10;
54 SkScalar radius = (size.fWidth - stroke) / 2;
55
56 SkPaint paint;
rmistry@google.comae933ce2012-08-23 18:19:56 +000057
mike@reedtribe.org70e35902012-07-29 20:38:16 +000058 paint.setAntiAlias(true);
59 paint.setColor(fillC);
60 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint);
rmistry@google.comae933ce2012-08-23 18:19:56 +000061
mike@reedtribe.org70e35902012-07-29 20:38:16 +000062 paint.setStyle(SkPaint::kStroke_Style);
63 paint.setStrokeWidth(stroke);
64 paint.setColor(SK_ColorBLACK);
65 canvas->drawCircle(size.fWidth/2, size.fHeight/2, radius, paint);
66}
67
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +000068static void test_surface(SkCanvas* canvas, SkSurface* surf, bool usePaint) {
mike@reedtribe.org70e35902012-07-29 20:38:16 +000069 drawContents(surf, SK_ColorRED);
junov@chromium.org5ee449a2013-04-12 20:20:50 +000070 SkImage* imgR = surf->newImageSnapshot();
mike@reedtribe.org70e35902012-07-29 20:38:16 +000071
reed@google.com97af1a62012-08-28 12:19:02 +000072 if (true) {
junov@chromium.org5ee449a2013-04-12 20:20:50 +000073 SkImage* imgR2 = surf->newImageSnapshot();
reed@google.com97af1a62012-08-28 12:19:02 +000074 SkASSERT(imgR == imgR2);
75 imgR2->unref();
76 }
77
mike@reedtribe.org70e35902012-07-29 20:38:16 +000078 drawContents(surf, SK_ColorGREEN);
junov@chromium.org5ee449a2013-04-12 20:20:50 +000079 SkImage* imgG = surf->newImageSnapshot();
mike@reedtribe.org70e35902012-07-29 20:38:16 +000080
reed@google.com97af1a62012-08-28 12:19:02 +000081 // since we've drawn after we snapped imgR, imgG will be a different obj
82 SkASSERT(imgR != imgG);
83
mike@reedtribe.org70e35902012-07-29 20:38:16 +000084 drawContents(surf, SK_ColorBLUE);
85
mike@reedtribe.orgd2782ed2012-07-31 02:45:15 +000086 SkPaint paint;
87// paint.setFilterBitmap(true);
88// paint.setAlpha(0x80);
89
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +000090 imgR->draw(canvas, 0, 0, usePaint ? &paint : NULL);
91 imgG->draw(canvas, 0, 80, usePaint ? &paint : NULL);
92 surf->draw(canvas, 0, 160, usePaint ? &paint : NULL);
93
94 SkRect src1, src2, src3;
95 src1.iset(0, 0, surf->width(), surf->height());
skia.committer@gmail.com7f1af502013-07-24 07:01:12 +000096 src2.iset(-surf->width() / 2, -surf->height() / 2,
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +000097 surf->width(), surf->height());
98 src3.iset(0, 0, surf->width() / 2, surf->height() / 2);
99
100 SkRect dst1, dst2, dst3, dst4;
101 dst1.set(0, 240, 65, 305);
102 dst2.set(0, 320, 65, 385);
103 dst3.set(0, 400, 65, 465);
104 dst4.set(0, 480, 65, 545);
105
106 imgR->draw(canvas, &src1, dst1, usePaint ? &paint : NULL);
107 imgG->draw(canvas, &src2, dst2, usePaint ? &paint : NULL);
108 imgR->draw(canvas, &src3, dst3, usePaint ? &paint : NULL);
109 imgG->draw(canvas, NULL, dst4, usePaint ? &paint : NULL);
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000110
111 imgG->unref();
112 imgR->unref();
113}
114
115class ImageGM : public skiagm::GM {
116 void* fBuffer;
reed@google.com58b21ec2012-07-30 18:20:12 +0000117 size_t fBufferSize;
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000118 SkSize fSize;
119 enum {
120 W = 64,
121 H = 64,
122 RB = W * 4 + 8,
123 };
124public:
125 ImageGM() {
reed@google.com58b21ec2012-07-30 18:20:12 +0000126 fBufferSize = RB * H;
127 fBuffer = sk_malloc_throw(fBufferSize);
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000128 fSize.set(SkIntToScalar(W), SkIntToScalar(H));
129 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000130
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000131 virtual ~ImageGM() {
132 sk_free(fBuffer);
133 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000134
135
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000136protected:
137 virtual SkString onShortName() {
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000138 return SkString("image-surface");
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000139 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000140
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000141 virtual SkISize onISize() {
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000142 return SkISize::Make(960, 1200);
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000143 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000144
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000145 virtual void onDraw(SkCanvas* canvas) {
mike@reedtribe.orgd829b5c2012-07-31 03:57:11 +0000146 drawJpeg(canvas, this->getISize());
147
mike@reedtribe.orgd2782ed2012-07-31 02:45:15 +0000148 canvas->scale(2, 2);
149
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000150 static const char* kLabel1 = "Original Img";
151 static const char* kLabel2 = "Modified Img";
152 static const char* kLabel3 = "Cur Surface";
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000153 static const char* kLabel4 = "Full Crop";
154 static const char* kLabel5 = "Over-crop";
155 static const char* kLabel6 = "Upper-left";
156 static const char* kLabel7 = "No Crop";
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000157
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000158 static const char* kLabel8 = "Pre-Alloc Img";
159 static const char* kLabel9 = "New Alloc Img";
160 static const char* kLabel10 = "SkPicture";
161 static const char* kLabel11 = "Null Paint";
162 static const char* kLabel12 = "GPU";
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000163
164 SkPaint textPaint;
165
166 canvas->drawText(kLabel1, strlen(kLabel1), 10, 60, textPaint);
167 canvas->drawText(kLabel2, strlen(kLabel2), 10, 140, textPaint);
168 canvas->drawText(kLabel3, strlen(kLabel3), 10, 220, textPaint);
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000169 canvas->drawText(kLabel4, strlen(kLabel4), 10, 300, textPaint);
170 canvas->drawText(kLabel5, strlen(kLabel5), 10, 380, textPaint);
171 canvas->drawText(kLabel6, strlen(kLabel6), 10, 460, textPaint);
172 canvas->drawText(kLabel7, strlen(kLabel7), 10, 540, textPaint);
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000173
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000174 canvas->drawText(kLabel8, strlen(kLabel8), 80, 10, textPaint);
175 canvas->drawText(kLabel9, strlen(kLabel9), 160, 10, textPaint);
176 canvas->drawText(kLabel10, strlen(kLabel10), 250, 10, textPaint);
177 canvas->drawText(kLabel11, strlen(kLabel11), 320, 10, textPaint);
178 canvas->drawText(kLabel12, strlen(kLabel12), 410, 10, textPaint);
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000179
180 canvas->translate(80, 20);
181
reed@google.com58b21ec2012-07-30 18:20:12 +0000182 // since we draw into this directly, we need to start fresh
183 sk_bzero(fBuffer, fBufferSize);
184
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000185 SkImage::Info info;
186
187 info.fWidth = W;
188 info.fHeight = H;
189 info.fColorType = SkImage::kPMColor_ColorType;
190 info.fAlphaType = SkImage::kPremul_AlphaType;
mike@reedtribe.orgb9476252012-11-15 02:37:45 +0000191 SkAutoTUnref<SkSurface> surf0(SkSurface::NewRasterDirect(info, fBuffer, RB));
192 SkAutoTUnref<SkSurface> surf1(SkSurface::NewRaster(info));
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000193 SkAutoTUnref<SkSurface> surf2(SkSurface::NewPicture(info.fWidth, info.fHeight));
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000194 SkAutoTUnref<SkSurface> surf3(SkSurface::NewPicture(info.fWidth, info.fHeight));
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000195#if SK_SUPPORT_GPU
196 GrContext* ctx = skiagm::GetGr();
197
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000198 SkAutoTUnref<SkSurface> surf4(SkSurface::NewRenderTarget(ctx, info, 0));
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000199#endif
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000200
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000201 test_surface(canvas, surf0, true);
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000202 canvas->translate(80, 0);
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000203 test_surface(canvas, surf1, true);
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000204 canvas->translate(80, 0);
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000205 test_surface(canvas, surf2, true);
206 canvas->translate(80, 0);
207 test_surface(canvas, surf3, false);
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000208#if SK_SUPPORT_GPU
209 if (NULL != ctx) {
210 canvas->translate(80, 0);
commit-bot@chromium.orgdfec28d2013-07-23 15:52:16 +0000211 test_surface(canvas, surf4, true);
robertphillips@google.com97b6b072012-10-31 14:48:39 +0000212 }
213#endif
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000214 }
rmistry@google.comae933ce2012-08-23 18:19:56 +0000215
reed@google.com97af1a62012-08-28 12:19:02 +0000216 virtual uint32_t onGetFlags() const SK_OVERRIDE {
reed@google.com9c728272012-08-28 15:54:54 +0000217 return GM::kSkipPicture_Flag | GM::kSkipPipe_Flag;
reed@google.com97af1a62012-08-28 12:19:02 +0000218 }
219
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000220private:
221 typedef skiagm::GM INHERITED;
222};
rmistry@google.comae933ce2012-08-23 18:19:56 +0000223
mike@reedtribe.org70e35902012-07-29 20:38:16 +0000224//////////////////////////////////////////////////////////////////////////////
225
226static skiagm::GM* MyFactory(void*) { return new ImageGM; }
227static skiagm::GMRegistry reg(MyFactory);