blob: 99d72f37b9bcc29d3f2aef64dd8d3641d80e4c60 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +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 */
Scroggo2c8208f2011-06-15 16:49:08 +00007#include "SampleApp.h"
8
reed@google.com8a85d0c2011-06-24 19:12:12 +00009#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000010#include "SkCanvas.h"
11#include "SkDevice.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000012#include "SkGraphics.h"
scroggo@google.com74b7ffd2013-04-30 02:32:41 +000013#include "SkImageDecoder.h"
reed@android.comb08eb2b2009-01-06 20:16:26 +000014#include "SkImageEncoder.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015#include "SkPaint.h"
16#include "SkPicture.h"
17#include "SkStream.h"
edisonn@google.comf8b6b012013-07-11 14:28:04 +000018#include "SkTSort.h"
reed@android.com44177402009-11-23 21:07:51 +000019#include "SkTime.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000020#include "SkWindow.h"
21
22#include "SampleCode.h"
Scroggo0f185c22011-03-24 18:35:50 +000023#include "SkTypeface.h"
reed@android.comf2b98d62010-12-20 18:26:13 +000024
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000025#if SK_SUPPORT_GPU
tomhudson@google.com6bf38b52012-02-14 15:11:59 +000026#include "gl/GrGLInterface.h"
bsalomon@google.com9c1f1ac2012-05-07 17:09:37 +000027#include "gl/GrGLUtil.h"
bsalomon@google.com583a1e32011-08-17 13:42:46 +000028#include "GrRenderTarget.h"
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000029#include "GrContext.h"
30#include "SkGpuDevice.h"
31#else
32class GrContext;
33#endif
Scroggo2c8208f2011-06-15 16:49:08 +000034
reed@google.com1830c7a2012-06-04 12:05:43 +000035#include "SkOSFile.h"
Scroggo8ac0d542011-06-21 14:44:57 +000036#include "SkPDFDevice.h"
37#include "SkPDFDocument.h"
38#include "SkStream.h"
39
scroggo@google.comb073d922012-06-08 15:35:03 +000040#include "SkGPipe.h"
41#include "SamplePipeControllers.h"
tfarina@chromium.orgb1b7f7072012-09-18 01:52:20 +000042#include "OverView.h"
epoger@google.com6a121782012-09-14 18:42:01 +000043#include "TransitionView.h"
scroggo@google.comb073d922012-06-08 15:35:03 +000044
reed@google.com1830c7a2012-06-04 12:05:43 +000045extern SampleView* CreateSamplePictFileView(const char filename[]);
46
47class PictFileFactory : public SkViewFactory {
48 SkString fFilename;
49public:
50 PictFileFactory(const SkString& filename) : fFilename(filename) {}
51 virtual SkView* operator() () const SK_OVERRIDE {
52 return CreateSamplePictFileView(fFilename.c_str());
53 }
54};
55
edisonn@google.comf8b6b012013-07-11 14:28:04 +000056#ifdef SAMPLE_PDF_FILE_VIEWER
57extern SampleView* CreateSamplePdfFileViewer(const char filename[]);
58
59class PdfFileViewerFactory : public SkViewFactory {
60 SkString fFilename;
61public:
62 PdfFileViewerFactory(const SkString& filename) : fFilename(filename) {}
63 virtual SkView* operator() () const SK_OVERRIDE {
64 return CreateSamplePdfFileViewer(fFilename.c_str());
65 }
66};
67#endif // SAMPLE_PDF_FILE_VIEWER
68
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000069#define PIPE_FILEx
70#ifdef PIPE_FILE
yangsu@google.com1f394212011-06-01 18:03:34 +000071#define FILE_PATH "/path/to/drawing.data"
72#endif
73
yangsu@google.comf121b052011-08-08 16:02:51 +000074#define PIPE_NETx
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000075#ifdef PIPE_NET
76#include "SkSockets.h"
77SkTCPServer gServer;
78#endif
yangsu@google.comef7bdfa2011-08-12 14:27:47 +000079
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +000080#define USE_ARROWS_FOR_ZOOM true
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000081
82#if SK_ANGLE
83//#define DEFAULT_TO_ANGLE 1
84#else
bsalomon@google.com82d12232013-09-09 15:36:26 +000085#define DEFAULT_TO_GPU 0 // if 1 default rendering is on GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000086#endif
reed@android.comf2b98d62010-12-20 18:26:13 +000087
reed@android.com8a1c16f2008-12-17 15:59:43 +000088#define ANIMATING_EVENTTYPE "nextSample"
reed@google.com84cfce12013-05-29 19:22:20 +000089#define ANIMATING_DELAY 250
reed@android.com8a1c16f2008-12-17 15:59:43 +000090
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000091#ifdef SK_DEBUG
reed@google.combad8c872011-05-18 20:10:31 +000092 #define FPS_REPEAT_MULTIPLIER 1
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000093#else
reed@google.combad8c872011-05-18 20:10:31 +000094 #define FPS_REPEAT_MULTIPLIER 10
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000095#endif
reed@google.combad8c872011-05-18 20:10:31 +000096#define FPS_REPEAT_COUNT (10 * FPS_REPEAT_MULTIPLIER)
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000097
reed@google.com3cec4d72011-07-06 13:59:47 +000098static SampleWindow* gSampleWindow;
99
reed@google.coma4f81372012-11-15 15:56:38 +0000100static bool gShowGMBounds;
101
reed@google.com2072db82011-11-08 15:18:10 +0000102static void postEventToSink(SkEvent* evt, SkEventSink* sink) {
103 evt->setTargetID(sink->getSinkID())->post();
104}
105
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000106///////////////////////////////////////////////////////////////////////////////
107
108static const char* skip_until(const char* str, const char* skip) {
109 if (!str) {
110 return NULL;
111 }
112 return strstr(str, skip);
113}
114
115static const char* skip_past(const char* str, const char* skip) {
116 const char* found = skip_until(str, skip);
117 if (!found) {
118 return NULL;
119 }
120 return found + strlen(skip);
121}
122
123static const char* gPrefFileName = "sampleapp_prefs.txt";
124
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000125static bool readTitleFromPrefs(SkString* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000126 SkFILEStream stream(gPrefFileName);
127 if (!stream.isValid()) {
128 return false;
129 }
130
131 int len = stream.getLength();
132 SkString data(len);
133 stream.read(data.writable_str(), len);
134 const char* s = data.c_str();
135
136 s = skip_past(s, "curr-slide-title");
137 s = skip_past(s, "=");
138 s = skip_past(s, "\"");
139 const char* stop = skip_until(s, "\"");
140 if (stop > s) {
141 title->set(s, stop - s);
142 return true;
143 }
144 return false;
145}
146
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000147static void writeTitleToPrefs(const char* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000148 SkFILEWStream stream(gPrefFileName);
149 SkString data;
150 data.printf("curr-slide-title = \"%s\"\n", title);
151 stream.write(data.c_str(), data.size());
152}
153
154///////////////////////////////////////////////////////////////////////////////
155
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000156class SampleWindow::DefaultDeviceManager : public SampleWindow::DeviceManager {
157public:
158
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000159 DefaultDeviceManager() {
160#if SK_SUPPORT_GPU
161 fCurContext = NULL;
162 fCurIntf = NULL;
163 fCurRenderTarget = NULL;
164 fMSAASampleCount = 0;
165#endif
166 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000167 }
168
169 virtual ~DefaultDeviceManager() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000170#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000171 SkSafeUnref(fCurContext);
172 SkSafeUnref(fCurIntf);
173 SkSafeUnref(fCurRenderTarget);
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000174#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000175 }
176
bsalomon@google.com11959252012-04-06 20:13:38 +0000177 virtual void setUpBackend(SampleWindow* win, int msaaSampleCount) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000178 SkASSERT(kNone_BackEndType == fBackend);
robertphillips@google.com53e96a12012-03-30 14:47:53 +0000179
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000180 fBackend = kNone_BackEndType;
181
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000182#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000183 switch (win->getDeviceType()) {
184 case kRaster_DeviceType:
185 // fallthrough
186 case kPicture_DeviceType:
187 // fallthrough
188 case kGPU_DeviceType:
189 // fallthrough
190 case kNullGPU_DeviceType:
191 // all these guys use the native backend
192 fBackend = kNativeGL_BackEndType;
193 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000194#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000195 case kANGLE_DeviceType:
196 // ANGLE is really the only odd man out
197 fBackend = kANGLE_BackEndType;
198 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000199#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000200 default:
201 SkASSERT(false);
202 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000203 }
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000204 AttachmentInfo attachmentInfo;
205 bool result = win->attach(fBackend, msaaSampleCount, &attachmentInfo);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000206 if (!result) {
bsalomon@google.com74913722011-10-27 20:44:19 +0000207 SkDebugf("Failed to initialize GL");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000208 return;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000209 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000210 fMSAASampleCount = msaaSampleCount;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000211
212 SkASSERT(NULL == fCurIntf);
213 switch (win->getDeviceType()) {
214 case kRaster_DeviceType:
215 // fallthrough
216 case kPicture_DeviceType:
217 // fallthrough
218 case kGPU_DeviceType:
219 // all these guys use the native interface
220 fCurIntf = GrGLCreateNativeInterface();
221 break;
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000222#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000223 case kANGLE_DeviceType:
224 fCurIntf = GrGLCreateANGLEInterface();
225 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000226#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000227 case kNullGPU_DeviceType:
228 fCurIntf = GrGLCreateNullInterface();
229 break;
230 default:
231 SkASSERT(false);
232 break;
bsalomon@google.com6fb736f2011-09-16 18:51:57 +0000233 }
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000234
235 SkASSERT(NULL == fCurContext);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000236 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000237
238 if (NULL == fCurContext || NULL == fCurIntf) {
239 // We need some context and interface to see results
240 SkSafeUnref(fCurContext);
241 SkSafeUnref(fCurIntf);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000242 SkDebugf("Failed to setup 3D");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000243
244 win->detach();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000245 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000246#endif // SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000247 // call windowSizeChanged to create the render target
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000248 this->windowSizeChanged(win);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000249 }
250
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000251 virtual void tearDownBackend(SampleWindow *win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000252#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000253 SkSafeUnref(fCurContext);
254 fCurContext = NULL;
255
256 SkSafeUnref(fCurIntf);
257 fCurIntf = NULL;
258
259 SkSafeUnref(fCurRenderTarget);
260 fCurRenderTarget = NULL;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000261#endif
bsalomon@google.comddd40e52012-04-10 15:56:29 +0000262 win->detach();
263 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000264 }
265
reed@google.com5957f472012-10-01 20:31:56 +0000266 virtual SkCanvas* createCanvas(SampleWindow::DeviceType dType,
267 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000268#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +0000269 if (IsGpuDeviceType(dType) && NULL != fCurContext) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000270 SkAutoTUnref<SkBaseDevice> device(new SkGpuDevice(fCurContext, fCurRenderTarget));
bsalomon@google.com82502e22013-01-24 20:47:18 +0000271 return new SkCanvas(device);
272 } else
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000273#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +0000274 {
275 return NULL;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000276 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000277 }
278
279 virtual void publishCanvas(SampleWindow::DeviceType dType,
280 SkCanvas* canvas,
281 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000282#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000283 if (fCurContext) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000284 // in case we have queued drawing calls
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000285 fCurContext->flush();
286
bsalomon@google.com82502e22013-01-24 20:47:18 +0000287 if (!IsGpuDeviceType(dType)) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000288 // need to send the raster bits to the (gpu) window
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000289 fCurContext->setRenderTarget(fCurRenderTarget);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000290 const SkBitmap& bm = win->getBitmap();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000291 fCurRenderTarget->writePixels(0, 0, bm.width(), bm.height(),
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000292 kSkia8888_GrPixelConfig,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000293 bm.getPixels(),
294 bm.rowBytes());
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000295 }
296 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000297#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000298
299 win->present();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000300 }
301
302 virtual void windowSizeChanged(SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000303#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000304 if (fCurContext) {
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000305 AttachmentInfo attachmentInfo;
306 win->attach(fBackend, fMSAASampleCount, &attachmentInfo);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000307
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000308 GrBackendRenderTargetDesc desc;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000309 desc.fWidth = SkScalarRound(win->width());
310 desc.fHeight = SkScalarRound(win->height());
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000311 desc.fConfig = kSkia8888_GrPixelConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000312 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000313 desc.fSampleCnt = attachmentInfo.fSampleCount;
314 desc.fStencilBits = attachmentInfo.fStencilBits;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000315 GrGLint buffer;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000316 GR_GL_GetIntegerv(fCurIntf, GR_GL_FRAMEBUFFER_BINDING, &buffer);
bsalomon@google.come269f212011-11-07 13:29:52 +0000317 desc.fRenderTargetHandle = buffer;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000318
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000319 SkSafeUnref(fCurRenderTarget);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000320 fCurRenderTarget = fCurContext->wrapBackendRenderTarget(desc);
bsalomon@google.com74913722011-10-27 20:44:19 +0000321 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000322#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000323 }
324
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000325 virtual GrContext* getGrContext() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000326#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000327 return fCurContext;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000328#else
329 return NULL;
330#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000331 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000332
333 virtual GrRenderTarget* getGrRenderTarget() SK_OVERRIDE {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000334#if SK_SUPPORT_GPU
bsalomon@google.com11959252012-04-06 20:13:38 +0000335 return fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000336#else
337 return NULL;
338#endif
bsalomon@google.com11959252012-04-06 20:13:38 +0000339 }
340
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000341private:
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000342
343#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000344 GrContext* fCurContext;
345 const GrGLInterface* fCurIntf;
346 GrRenderTarget* fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000347 int fMSAASampleCount;
348#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000349
350 SkOSWindow::SkBackEndTypes fBackend;
351
352 typedef SampleWindow::DeviceManager INHERITED;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000353};
354
355///////////////
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000356static const char view_inval_msg[] = "view-inval-msg";
357
Scroggo62b65b02011-06-21 16:01:26 +0000358void SampleWindow::postInvalDelay() {
reed@google.com87fac4a2011-08-04 13:50:17 +0000359 (new SkEvent(view_inval_msg, this->getSinkID()))->postDelay(1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000360}
361
362static bool isInvalEvent(const SkEvent& evt) {
363 return evt.isType(view_inval_msg);
364}
365//////////////////
366
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000367SkFuncViewFactory::SkFuncViewFactory(SkViewCreateFunc func)
368 : fCreateFunc(func) {
369}
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +0000370
bsalomon@google.com8301de12011-10-31 16:47:13 +0000371SkView* SkFuncViewFactory::operator() () const {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000372 return (*fCreateFunc)();
373}
374
375#include "GMSampleView.h"
376
377SkGMSampleViewFactory::SkGMSampleViewFactory(GMFactoryFunc func)
378 : fFunc(func) {
379}
380
381SkView* SkGMSampleViewFactory::operator() () const {
382 return new GMSampleView(fFunc(NULL));
383}
384
385SkViewRegister* SkViewRegister::gHead;
386SkViewRegister::SkViewRegister(SkViewFactory* fact) : fFact(fact) {
387 fFact->ref();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000388 fChain = gHead;
389 gHead = this;
390}
391
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000392SkViewRegister::SkViewRegister(SkViewCreateFunc func) {
393 fFact = new SkFuncViewFactory(func);
394 fChain = gHead;
395 gHead = this;
396}
397
398SkViewRegister::SkViewRegister(GMFactoryFunc func) {
399 fFact = new SkGMSampleViewFactory(func);
400 fChain = gHead;
401 gHead = this;
402}
403
404class AutoUnrefArray {
405public:
406 AutoUnrefArray() {}
407 ~AutoUnrefArray() {
408 int count = fObjs.count();
409 for (int i = 0; i < count; ++i) {
410 fObjs[i]->unref();
411 }
412 }
413 SkRefCnt*& push_back() { return *fObjs.append(); }
chudy@google.com4605a3f2012-08-01 17:58:01 +0000414
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000415private:
416 SkTDArray<SkRefCnt*> fObjs;
417};
418
419// registers GMs as Samples
420// This can't be performed during static initialization because it could be
421// run before GMRegistry has been fully built.
caryclark@google.com02939ce2012-06-06 12:09:51 +0000422static void SkGMRegistyToSampleRegistry() {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000423 static bool gOnce;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000424 static AutoUnrefArray fRegisters;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000425
426 if (!gOnce) {
427 const skiagm::GMRegistry* gmreg = skiagm::GMRegistry::Head();
428 while (gmreg) {
429 fRegisters.push_back() = new SkViewRegister(gmreg->factory());
430 gmreg = gmreg->next();
431 }
432 gOnce = true;
433 }
434}
435
reed@google.com29038ed2011-07-06 17:56:47 +0000436#if 0
reed@google.comf0b5f682011-03-11 20:08:25 +0000437#include <CoreFoundation/CoreFoundation.h>
438#include <CoreFoundation/CFURLAccess.h>
439
440static void testpdf() {
441 CFStringRef path = CFStringCreateWithCString(NULL, "/test.pdf",
442 kCFStringEncodingUTF8);
443 CFURLRef url = CFURLCreateWithFileSystemPath(NULL, path,
444 kCFURLPOSIXPathStyle,
445 false);
446 CFRelease(path);
447 CGRect box = CGRectMake(0, 0, 8*72, 10*72);
448 CGContextRef cg = CGPDFContextCreateWithURL(url, &box, NULL);
449 CFRelease(url);
450
451 CGContextBeginPage(cg, &box);
452 CGRect r = CGRectMake(10, 10, 40 + 0.5, 50 + 0.5);
453 CGContextFillEllipseInRect(cg, r);
454 CGContextEndPage(cg);
455 CGContextRelease(cg);
456
457 if (false) {
458 SkBitmap bm;
459 bm.setConfig(SkBitmap::kA8_Config, 64, 64);
460 bm.allocPixels();
junov@google.comdbfac8a2012-12-06 21:47:40 +0000461 bm.eraseColor(SK_ColorTRANSPARENT);
reed@google.comf0b5f682011-03-11 20:08:25 +0000462
463 SkCanvas canvas(bm);
464
465 }
466}
467#endif
468
469//////////////////////////////////////////////////////////////////////////////
470
reed@google.com569e0432011-04-05 13:07:03 +0000471enum FlipAxisEnum {
472 kFlipAxis_X = (1 << 0),
473 kFlipAxis_Y = (1 << 1)
474};
475
reed@google.comf0b5f682011-03-11 20:08:25 +0000476#include "SkDrawFilter.h"
477
bungeman@google.com96aabc82013-06-03 21:26:34 +0000478struct HintingState {
479 SkPaint::Hinting hinting;
480 const char* name;
481 const char* label;
482};
483static HintingState gHintingStates[] = {
484 {SkPaint::kNo_Hinting, "Mixed", NULL },
485 {SkPaint::kNo_Hinting, "None", "H0 " },
486 {SkPaint::kSlight_Hinting, "Slight", "Hs " },
487 {SkPaint::kNormal_Hinting, "Normal", "Hn " },
488 {SkPaint::kFull_Hinting, "Full", "Hf " },
489};
490
reed@google.com569e0432011-04-05 13:07:03 +0000491class FlagsDrawFilter : public SkDrawFilter {
reed@google.comf0b5f682011-03-11 20:08:25 +0000492public:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000493 FlagsDrawFilter(SkOSMenu::TriState lcd, SkOSMenu::TriState aa, SkOSMenu::TriState filter,
bungeman@google.com96aabc82013-06-03 21:26:34 +0000494 SkOSMenu::TriState subpixel, int hinting)
495 : fLCDState(lcd), fAAState(aa), fFilterState(filter), fSubpixelState(subpixel)
496 , fHintingState(hinting) {}
reed@google.comf0b5f682011-03-11 20:08:25 +0000497
reed@google.com971aca72012-11-26 20:26:54 +0000498 virtual bool filter(SkPaint* paint, Type t) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000499 if (kText_Type == t && SkOSMenu::kMixedState != fLCDState) {
500 paint->setLCDRenderText(SkOSMenu::kOnState == fLCDState);
reed@google.com569e0432011-04-05 13:07:03 +0000501 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000502 if (SkOSMenu::kMixedState != fAAState) {
503 paint->setAntiAlias(SkOSMenu::kOnState == fAAState);
reed@google.comf0b5f682011-03-11 20:08:25 +0000504 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000505 if (SkOSMenu::kMixedState != fFilterState) {
reed@google.com44699382013-10-31 17:28:30 +0000506 paint->setFilterLevel(SkOSMenu::kOnState == fFilterState ?
507 SkPaint::kLow_FilterLevel : SkPaint::kNone_FilterLevel);
reed@google.com176753a2011-05-17 15:32:04 +0000508 }
bungeman@google.com96aabc82013-06-03 21:26:34 +0000509 if (SkOSMenu::kMixedState != fSubpixelState) {
510 paint->setSubpixelText(SkOSMenu::kOnState == fSubpixelState);
511 }
bungeman@google.com055aa522013-06-03 21:35:03 +0000512 if (0 != fHintingState && fHintingState < (int)SK_ARRAY_COUNT(gHintingStates)) {
bungeman@google.com96aabc82013-06-03 21:26:34 +0000513 paint->setHinting(gHintingStates[fHintingState].hinting);
reed@google.com09e3baa2011-05-18 12:04:31 +0000514 }
reed@google.com971aca72012-11-26 20:26:54 +0000515 return true;
reed@google.comf0b5f682011-03-11 20:08:25 +0000516 }
517
518private:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000519 SkOSMenu::TriState fLCDState;
520 SkOSMenu::TriState fAAState;
521 SkOSMenu::TriState fFilterState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000522 SkOSMenu::TriState fSubpixelState;
523 int fHintingState;
reed@google.comf0b5f682011-03-11 20:08:25 +0000524};
525
reed@android.com8a1c16f2008-12-17 15:59:43 +0000526//////////////////////////////////////////////////////////////////////////////
527
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000528#define MAX_ZOOM_LEVEL 8
529#define MIN_ZOOM_LEVEL -8
530
reed@android.comf2b98d62010-12-20 18:26:13 +0000531static const char gCharEvtName[] = "SampleCode_Char_Event";
532static const char gKeyEvtName[] = "SampleCode_Key_Event";
reed@android.com8a1c16f2008-12-17 15:59:43 +0000533static const char gTitleEvtName[] = "SampleCode_Title_Event";
534static const char gPrefSizeEvtName[] = "SampleCode_PrefSize_Event";
reed@android.comf2b98d62010-12-20 18:26:13 +0000535static const char gFastTextEvtName[] = "SampleCode_FastText_Event";
reed@google.com2072db82011-11-08 15:18:10 +0000536static const char gUpdateWindowTitleEvtName[] = "SampleCode_UpdateWindowTitle";
reed@android.comf2b98d62010-12-20 18:26:13 +0000537
538bool SampleCode::CharQ(const SkEvent& evt, SkUnichar* outUni) {
539 if (evt.isType(gCharEvtName, sizeof(gCharEvtName) - 1)) {
540 if (outUni) {
541 *outUni = evt.getFast32();
542 }
543 return true;
544 }
545 return false;
546}
547
548bool SampleCode::KeyQ(const SkEvent& evt, SkKey* outKey) {
549 if (evt.isType(gKeyEvtName, sizeof(gKeyEvtName) - 1)) {
550 if (outKey) {
551 *outKey = (SkKey)evt.getFast32();
552 }
553 return true;
554 }
555 return false;
556}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000557
558bool SampleCode::TitleQ(const SkEvent& evt) {
559 return evt.isType(gTitleEvtName, sizeof(gTitleEvtName) - 1);
560}
561
562void SampleCode::TitleR(SkEvent* evt, const char title[]) {
563 SkASSERT(evt && TitleQ(*evt));
564 evt->setString(gTitleEvtName, title);
565}
566
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000567bool SampleCode::RequestTitle(SkView* view, SkString* title) {
568 SkEvent evt(gTitleEvtName);
569 if (view->doQuery(&evt)) {
570 title->set(evt.findString(gTitleEvtName));
571 return true;
572 }
573 return false;
574}
575
reed@android.com8a1c16f2008-12-17 15:59:43 +0000576bool SampleCode::PrefSizeQ(const SkEvent& evt) {
577 return evt.isType(gPrefSizeEvtName, sizeof(gPrefSizeEvtName) - 1);
578}
579
580void SampleCode::PrefSizeR(SkEvent* evt, SkScalar width, SkScalar height) {
581 SkASSERT(evt && PrefSizeQ(*evt));
582 SkScalar size[2];
583 size[0] = width;
584 size[1] = height;
585 evt->setScalars(gPrefSizeEvtName, 2, size);
586}
587
reed@android.comf2b98d62010-12-20 18:26:13 +0000588bool SampleCode::FastTextQ(const SkEvent& evt) {
589 return evt.isType(gFastTextEvtName, sizeof(gFastTextEvtName) - 1);
590}
591
592///////////////////////////////////////////////////////////////////////////////
593
reed@android.com44177402009-11-23 21:07:51 +0000594static SkMSec gAnimTime;
reed@android.comf2b98d62010-12-20 18:26:13 +0000595static SkMSec gAnimTimePrev;
596
reed@android.com44177402009-11-23 21:07:51 +0000597SkMSec SampleCode::GetAnimTime() { return gAnimTime; }
reed@android.comf2b98d62010-12-20 18:26:13 +0000598SkMSec SampleCode::GetAnimTimeDelta() { return gAnimTime - gAnimTimePrev; }
599SkScalar SampleCode::GetAnimSecondsDelta() {
600 return SkDoubleToScalar(GetAnimTimeDelta() / 1000.0);
601}
reed@android.com44177402009-11-23 21:07:51 +0000602
603SkScalar SampleCode::GetAnimScalar(SkScalar speed, SkScalar period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000604 // since gAnimTime can be up to 32 bits, we can't convert it to a float
605 // or we'll lose the low bits. Hence we use doubles for the intermediate
606 // calculations
607 double seconds = (double)gAnimTime / 1000.0;
608 double value = SkScalarToDouble(speed) * seconds;
reed@android.com44177402009-11-23 21:07:51 +0000609 if (period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000610 value = ::fmod(value, SkScalarToDouble(period));
reed@android.com44177402009-11-23 21:07:51 +0000611 }
reed@android.comf2b98d62010-12-20 18:26:13 +0000612 return SkDoubleToScalar(value);
reed@android.com44177402009-11-23 21:07:51 +0000613}
614
bsalomon@google.com85003222012-03-28 14:44:37 +0000615SkScalar SampleCode::GetAnimSinScalar(SkScalar amplitude,
616 SkScalar periodInSec,
617 SkScalar phaseInSec) {
618 if (!periodInSec) {
619 return 0;
620 }
621 double t = (double)gAnimTime / 1000.0 + phaseInSec;
622 t *= SkScalarToFloat(2 * SK_ScalarPI) / periodInSec;
623 amplitude = SK_ScalarHalf * amplitude;
624 return SkScalarMul(amplitude, SkDoubleToScalar(sin(t))) + amplitude;
625}
626
reed@google.com3cec4d72011-07-06 13:59:47 +0000627GrContext* SampleCode::GetGr() {
628 return gSampleWindow ? gSampleWindow->getGrContext() : NULL;
629}
630
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000631// some GMs rely on having a skiagm::GetGr function defined
632namespace skiagm {
caryclark@google.com02939ce2012-06-06 12:09:51 +0000633 // FIXME: this should be moved into a header
634 GrContext* GetGr();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000635 GrContext* GetGr() { return SampleCode::GetGr(); }
636}
637
reed@android.com8a1c16f2008-12-17 15:59:43 +0000638//////////////////////////////////////////////////////////////////////////////
639
reed@android.comf2b98d62010-12-20 18:26:13 +0000640static SkView* curr_view(SkWindow* wind) {
641 SkView::F2BIter iter(wind);
642 return iter.next();
643}
644
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000645static bool curr_title(SkWindow* wind, SkString* title) {
646 SkView* view = curr_view(wind);
647 if (view) {
648 SkEvent evt(gTitleEvtName);
649 if (view->doQuery(&evt)) {
650 title->set(evt.findString(gTitleEvtName));
651 return true;
652 }
653 }
654 return false;
655}
656
Scroggo2c8208f2011-06-15 16:49:08 +0000657void SampleWindow::setZoomCenter(float x, float y)
658{
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +0000659 fZoomCenterX = x;
660 fZoomCenterY = y;
Scroggo2c8208f2011-06-15 16:49:08 +0000661}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000662
Scroggo0f185c22011-03-24 18:35:50 +0000663bool SampleWindow::zoomIn()
664{
665 // Arbitrarily decided
666 if (fFatBitsScale == 25) return false;
667 fFatBitsScale++;
668 this->inval(NULL);
669 return true;
670}
671
672bool SampleWindow::zoomOut()
673{
674 if (fFatBitsScale == 1) return false;
675 fFatBitsScale--;
676 this->inval(NULL);
677 return true;
678}
679
Scroggo0f185c22011-03-24 18:35:50 +0000680void SampleWindow::updatePointer(int x, int y)
681{
682 fMouseX = x;
683 fMouseY = y;
684 if (fShowZoomer) {
685 this->inval(NULL);
686 }
687}
688
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000689static inline SampleWindow::DeviceType cycle_devicetype(SampleWindow::DeviceType ct) {
690 static const SampleWindow::DeviceType gCT[] = {
691 SampleWindow::kPicture_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000692#if SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000693 SampleWindow::kGPU_DeviceType,
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000694#if SK_ANGLE
695 SampleWindow::kANGLE_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000696#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +0000697 SampleWindow::kRaster_DeviceType, // skip the null gpu device in normal cycling
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000698#endif // SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000699 SampleWindow::kRaster_DeviceType
reed@android.com8a1c16f2008-12-17 15:59:43 +0000700 };
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000701 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gCT) == SampleWindow::kDeviceTypeCnt, array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000702 return gCT[ct];
703}
704
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000705static void usage(const char * argv0) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000706 SkDebugf("%s [--slide sampleName] [-i resourcePath] [--msaa sampleCount] [--pictureDir dirPath] [--picture path] [--sort]\n", argv0);
707#ifdef SAMPLE_PDF_FILE_VIEWER
708 SkDebugf(" [--pdfDir pdfPath]\n");
709 SkDebugf(" pdfPath: path to directory pdf files are read from\n");
710#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000711 SkDebugf(" sampleName: sample at which to start.\n");
712 SkDebugf(" resourcePath: directory that stores image resources.\n");
bsalomon@google.com11959252012-04-06 20:13:38 +0000713 SkDebugf(" msaa: request multisampling with the given sample count.\n");
chudy@google.com4605a3f2012-08-01 17:58:01 +0000714 SkDebugf(" dirPath: path to directory skia pictures are read from\n");
715 SkDebugf(" path: path to skia picture\n");
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000716 SkDebugf(" --sort: sort samples by title, this would help to compare pdf rendering (P:foo.pdf) with skp rendering (P:foo.pdf)\n");
717}
718
719static SkString getSampleTitle(const SkViewFactory* sampleFactory) {
720 SkView* view = (*sampleFactory)();
721 SkString title;
722 SampleCode::RequestTitle(view, &title);
723 view->unref();
724 return title;
725}
726
edisonn@google.comde36b692013-07-11 15:40:31 +0000727static bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000728 return strcmp(getSampleTitle(first).c_str(), getSampleTitle(second).c_str()) < 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000729}
730
chudy@google.com4605a3f2012-08-01 17:58:01 +0000731SampleWindow::SampleWindow(void* hwnd, int argc, char** argv, DeviceManager* devManager)
robertphillips@google.com4750fa52012-04-10 13:34:11 +0000732 : INHERITED(hwnd)
733 , fDevManager(NULL) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000734
reed@google.com7d05ac92013-06-06 13:14:13 +0000735 fCurrIndex = -1;
736
reed@google.com1830c7a2012-06-04 12:05:43 +0000737 this->registerPictFileSamples(argv, argc);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000738 this->registerPictFileSample(argv, argc);
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000739#ifdef SAMPLE_PDF_FILE_VIEWER
740 this->registerPdfFileViewerSamples(argv, argc);
741#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com76d40212012-03-22 14:12:15 +0000742 SkGMRegistyToSampleRegistry();
743 {
744 const SkViewRegister* reg = SkViewRegister::Head();
745 while (reg) {
746 *fSamples.append() = reg->factory();
747 reg = reg->next();
748 }
749 }
750
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000751 bool sort = false;
752 for (int i = 0; i < argc; ++i) {
753 if (!strcmp(argv[i], "--sort")) {
754 sort = true;
755 break;
756 }
757 }
758
759 if (sort) {
760 // Sort samples, so foo.skp and foo.pdf are consecutive and we can quickly spot where
761 // skp -> pdf -> png fails.
762 SkTQSort(fSamples.begin(), fSamples.end() ? fSamples.end() - 1 : NULL, compareSampleTitle);
763 }
764
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000765 const char* resourcePath = NULL;
bsalomon@google.com11959252012-04-06 20:13:38 +0000766 fMSAASampleCount = 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000767
768 const char* const commandName = argv[0];
769 char* const* stop = argv + argc;
770 for (++argv; argv < stop; ++argv) {
reed@google.com55ebe8e2013-09-10 19:12:07 +0000771 if (!strcmp(*argv, "-i") || !strcmp(*argv, "--resourcePath")) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000772 argv++;
773 if (argv < stop && **argv) {
774 resourcePath = *argv;
775 }
robertphillips@google.com76d40212012-03-22 14:12:15 +0000776 } else if (strcmp(*argv, "--slide") == 0) {
777 argv++;
778 if (argv < stop && **argv) {
779 fCurrIndex = findByTitle(*argv);
780 if (fCurrIndex < 0) {
781 fprintf(stderr, "Unknown sample \"%s\"\n", *argv);
robertphillips@google.com7265e722012-05-03 18:22:28 +0000782 listTitles();
robertphillips@google.com76d40212012-03-22 14:12:15 +0000783 }
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000784 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000785 } else if (strcmp(*argv, "--msaa") == 0) {
786 ++argv;
787 if (argv < stop && **argv) {
788 fMSAASampleCount = atoi(*argv);
789 }
robertphillips@google.com7265e722012-05-03 18:22:28 +0000790 } else if (strcmp(*argv, "--list") == 0) {
791 listTitles();
halcanary@google.com805ca192013-10-14 12:47:37 +0000792 } else if (strcmp(*argv, "--pictureDir") == 0) {
793 ++argv; // This case is dealt with in registerPictFileSamples().
794 } else if (strcmp(*argv, "--picture") == 0) {
795 ++argv; // This case is dealt with in registerPictFileSample().
bsalomon@google.com11959252012-04-06 20:13:38 +0000796 }
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000797 else {
robertphillips@google.com76d40212012-03-22 14:12:15 +0000798 usage(commandName);
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000799 }
800 }
801
802 if (fCurrIndex < 0) {
803 SkString title;
804 if (readTitleFromPrefs(&title)) {
805 fCurrIndex = findByTitle(title.c_str());
806 }
807 }
808
809 if (fCurrIndex < 0) {
810 fCurrIndex = 0;
811 }
812
reed@google.com3cec4d72011-07-06 13:59:47 +0000813 gSampleWindow = this;
814
yangsu@google.com1f394212011-06-01 18:03:34 +0000815#ifdef PIPE_FILE
816 //Clear existing file or create file if it doesn't exist
817 FILE* f = fopen(FILE_PATH, "wb");
818 fclose(f);
819#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +0000820
reed@android.com8a1c16f2008-12-17 15:59:43 +0000821 fPicture = NULL;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000822
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000823 fDeviceType = kRaster_DeviceType;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000824
825#if DEFAULT_TO_GPU
826 fDeviceType = kGPU_DeviceType;
reed@android.comf2b98d62010-12-20 18:26:13 +0000827#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000828#if SK_ANGLE && DEFAULT_TO_ANGLE
829 fDeviceType = kANGLE_DeviceType;
830#endif
831
reed@android.com8a1c16f2008-12-17 15:59:43 +0000832 fUseClip = false;
reed@android.come522ca52009-11-23 20:10:41 +0000833 fNClip = false;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000834 fAnimating = false;
reed@android.com6c5f6f22009-08-14 16:08:38 +0000835 fRotate = false;
bungeman@google.comb1785912013-07-09 21:58:56 +0000836 fRotateAnimTime = 0;
bsalomon@google.come8f09102011-09-08 18:48:12 +0000837 fPerspAnim = false;
838 fPerspAnimTime = 0;
reed@android.comf2b98d62010-12-20 18:26:13 +0000839 fRequestGrabImage = false;
scroggo@google.comb073d922012-06-08 15:35:03 +0000840 fPipeState = SkOSMenu::kOffState;
reed@google.com67b89ee2012-08-15 14:41:58 +0000841 fTilingState = SkOSMenu::kOffState;
scroggo@google.com85cade02012-08-17 13:29:50 +0000842 fTileCount.set(1, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000843 fMeasureFPS = false;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000844 fLCDState = SkOSMenu::kMixedState;
845 fAAState = SkOSMenu::kMixedState;
846 fFilterState = SkOSMenu::kMixedState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000847 fSubpixelState = SkOSMenu::kMixedState;
848 fHintingState = 0;
reed@google.com569e0432011-04-05 13:07:03 +0000849 fFlipAxis = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000850 fScrollTestX = fScrollTestY = 0;
851
Scroggo0f185c22011-03-24 18:35:50 +0000852 fMouseX = fMouseY = 0;
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +0000853 fFatBitsScale = 8;
Scroggo0f185c22011-03-24 18:35:50 +0000854 fTypeface = SkTypeface::CreateFromTypeface(NULL, SkTypeface::kBold);
855 fShowZoomer = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000856
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000857 fZoomLevel = 0;
858 fZoomScale = SK_Scalar1;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000859
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000860 fMagnify = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000861
Scroggo8ac0d542011-06-21 14:44:57 +0000862 fSaveToPdf = false;
863 fPdfCanvas = NULL;
864
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000865 fTransitionNext = 6;
866 fTransitionPrev = 2;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000867
yangsu@google.com921091f2011-08-02 13:39:12 +0000868 int sinkID = this->getSinkID();
scroggo@google.com7dadc742012-04-18 14:07:57 +0000869 fAppMenu = new SkOSMenu;
870 fAppMenu->setTitle("Global Settings");
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000871 int itemID;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000872
873 itemID =fAppMenu->appendList("Device Type", "Device Type", sinkID, 0,
874 "Raster", "Picture", "OpenGL",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000875#if SK_ANGLE
876 "ANGLE",
877#endif
878 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000879 fAppMenu->assignKeyEquivalentToItem(itemID, 'd');
880 itemID = fAppMenu->appendTriState("AA", "AA", sinkID, fAAState);
881 fAppMenu->assignKeyEquivalentToItem(itemID, 'b');
882 itemID = fAppMenu->appendTriState("LCD", "LCD", sinkID, fLCDState);
883 fAppMenu->assignKeyEquivalentToItem(itemID, 'l');
884 itemID = fAppMenu->appendTriState("Filter", "Filter", sinkID, fFilterState);
885 fAppMenu->assignKeyEquivalentToItem(itemID, 'n');
bungeman@google.com96aabc82013-06-03 21:26:34 +0000886 itemID = fAppMenu->appendTriState("Subpixel", "Subpixel", sinkID, fSubpixelState);
887 fAppMenu->assignKeyEquivalentToItem(itemID, 's');
888 itemID = fAppMenu->appendList("Hinting", "Hinting", sinkID, fHintingState,
889 gHintingStates[0].name,
890 gHintingStates[1].name,
891 gHintingStates[2].name,
892 gHintingStates[3].name,
bungeman@google.coma9133bb2013-06-04 17:49:20 +0000893 gHintingStates[4].name,
894 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000895 fAppMenu->assignKeyEquivalentToItem(itemID, 'h');
reed@google.com67b89ee2012-08-15 14:41:58 +0000896
scroggo@google.comb073d922012-06-08 15:35:03 +0000897 fUsePipeMenuItemID = fAppMenu->appendTriState("Pipe", "Pipe" , sinkID,
chudy@google.com4605a3f2012-08-01 17:58:01 +0000898 fPipeState);
scroggo@google.comb073d922012-06-08 15:35:03 +0000899 fAppMenu->assignKeyEquivalentToItem(fUsePipeMenuItemID, 'P');
reed@google.com67b89ee2012-08-15 14:41:58 +0000900
901 itemID = fAppMenu->appendTriState("Tiling", "Tiling", sinkID, fTilingState);
902 fAppMenu->assignKeyEquivalentToItem(itemID, 't');
903
chudy@google.com4605a3f2012-08-01 17:58:01 +0000904 itemID = fAppMenu->appendSwitch("Slide Show", "Slide Show" , sinkID, false);
905 fAppMenu->assignKeyEquivalentToItem(itemID, 'a');
906 itemID = fAppMenu->appendSwitch("Clip", "Clip" , sinkID, fUseClip);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000907 fAppMenu->assignKeyEquivalentToItem(itemID, 'c');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000908 itemID = fAppMenu->appendSwitch("Flip X", "Flip X" , sinkID, false);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000909 fAppMenu->assignKeyEquivalentToItem(itemID, 'x');
910 itemID = fAppMenu->appendSwitch("Flip Y", "Flip Y" , sinkID, false);
911 fAppMenu->assignKeyEquivalentToItem(itemID, 'y');
912 itemID = fAppMenu->appendSwitch("Zoomer", "Zoomer" , sinkID, fShowZoomer);
913 fAppMenu->assignKeyEquivalentToItem(itemID, 'z');
914 itemID = fAppMenu->appendSwitch("Magnify", "Magnify" , sinkID, fMagnify);
915 fAppMenu->assignKeyEquivalentToItem(itemID, 'm');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000916 itemID =fAppMenu->appendList("Transition-Next", "Transition-Next", sinkID,
917 fTransitionNext, "Up", "Up and Right", "Right",
918 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000919 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000920 fAppMenu->assignKeyEquivalentToItem(itemID, 'j');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000921 itemID =fAppMenu->appendList("Transition-Prev", "Transition-Prev", sinkID,
922 fTransitionPrev, "Up", "Up and Right", "Right",
923 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000924 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000925 fAppMenu->assignKeyEquivalentToItem(itemID, 'k');
926 itemID = fAppMenu->appendAction("Save to PDF", sinkID);
927 fAppMenu->assignKeyEquivalentToItem(itemID, 'e');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000928
scroggo@google.com7dadc742012-04-18 14:07:57 +0000929 this->addMenu(fAppMenu);
930 fSlideMenu = new SkOSMenu;
931 this->addMenu(fSlideMenu);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000932
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +0000933// this->setConfig(SkBitmap::kRGB_565_Config);
934 this->setConfig(SkBitmap::kARGB_8888_Config);
935 this->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +0000936 this->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000937
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000938 skiagm::GM::SetResourcePath(resourcePath);
939
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000940 this->loadView((*fSamples[fCurrIndex])());
chudy@google.com4605a3f2012-08-01 17:58:01 +0000941
bsalomon@google.com840e9f32011-07-06 21:59:09 +0000942 fPDFData = NULL;
reed@google.comf0b5f682011-03-11 20:08:25 +0000943
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000944 if (NULL == devManager) {
945 fDevManager = new DefaultDeviceManager();
946 } else {
947 devManager->ref();
948 fDevManager = devManager;
949 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000950 fDevManager->setUpBackend(this, fMSAASampleCount);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000951
Scroggob4490c72011-06-17 13:53:05 +0000952 // If another constructor set our dimensions, ensure that our
953 // onSizeChange gets called.
954 if (this->height() && this->width()) {
955 this->onSizeChange();
956 }
reed@google.com2072db82011-11-08 15:18:10 +0000957
958 // can't call this synchronously, since it may require a subclass to
959 // to implement, or the caller may need us to have returned from the
960 // constructor first. Hence we post an event to ourselves.
961// this->updateTitle();
962 postEventToSink(new SkEvent(gUpdateWindowTitleEvtName), this);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000963}
964
965SampleWindow::~SampleWindow() {
966 delete fPicture;
Scroggo8ac0d542011-06-21 14:44:57 +0000967 delete fPdfCanvas;
Scroggo0f185c22011-03-24 18:35:50 +0000968 fTypeface->unref();
reed@google.com29038ed2011-07-06 17:56:47 +0000969
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000970 SkSafeUnref(fDevManager);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000971}
972
reed@google.com1830c7a2012-06-04 12:05:43 +0000973static void make_filepath(SkString* path, const char* dir, const SkString& name) {
974 size_t len = strlen(dir);
975 path->set(dir);
976 if (len > 0 && dir[len - 1] != '/') {
977 path->append("/");
978 }
979 path->append(name);
980}
981
chudy@google.com4605a3f2012-08-01 17:58:01 +0000982void SampleWindow::registerPictFileSample(char** argv, int argc) {
983 const char* pict = NULL;
984
985 for (int i = 0; i < argc; ++i) {
986 if (!strcmp(argv[i], "--picture")) {
987 i += 1;
988 if (i < argc) {
989 pict = argv[i];
990 break;
991 }
992 }
993 }
994 if (pict) {
995 SkString path(pict);
reed@google.com7d05ac92013-06-06 13:14:13 +0000996 fCurrIndex = fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +0000997 *fSamples.append() = new PictFileFactory(path);
998 }
999}
1000
reed@google.com1830c7a2012-06-04 12:05:43 +00001001void SampleWindow::registerPictFileSamples(char** argv, int argc) {
1002 const char* pictDir = NULL;
1003
1004 for (int i = 0; i < argc; ++i) {
1005 if (!strcmp(argv[i], "--pictureDir")) {
1006 i += 1;
1007 if (i < argc) {
1008 pictDir = argv[i];
1009 break;
1010 }
1011 }
1012 }
1013 if (pictDir) {
1014 SkOSFile::Iter iter(pictDir, "skp");
1015 SkString filename;
1016 while (iter.next(&filename)) {
1017 SkString path;
1018 make_filepath(&path, pictDir, filename);
1019 *fSamples.append() = new PictFileFactory(path);
1020 }
1021 }
1022}
1023
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001024#ifdef SAMPLE_PDF_FILE_VIEWER
1025void SampleWindow::registerPdfFileViewerSamples(char** argv, int argc) {
1026 const char* pdfDir = NULL;
1027
1028 for (int i = 0; i < argc; ++i) {
1029 if (!strcmp(argv[i], "--pdfDir")) {
1030 i += 1;
1031 if (i < argc) {
1032 pdfDir = argv[i];
1033 break;
1034 }
1035 }
1036 }
1037 if (pdfDir) {
1038 SkOSFile::Iter iter(pdfDir, "pdf");
1039 SkString filename;
1040 while (iter.next(&filename)) {
1041 SkString path;
1042 make_filepath(&path, pdfDir, filename);
1043 *fSamples.append() = new PdfFileViewerFactory(path);
1044 }
1045 }
1046}
1047#endif // SAMPLE_PDF_FILE_VIEWER
1048
1049
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001050int SampleWindow::findByTitle(const char title[]) {
1051 int i, count = fSamples.count();
1052 for (i = 0; i < count; i++) {
1053 if (getSampleTitle(i).equals(title)) {
1054 return i;
1055 }
1056 }
mike@reedtribe.orgdd52caa2011-12-28 20:02:10 +00001057 return -1;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001058}
1059
robertphillips@google.com7265e722012-05-03 18:22:28 +00001060void SampleWindow::listTitles() {
1061 int count = fSamples.count();
1062 SkDebugf("All Slides:\n");
1063 for (int i = 0; i < count; i++) {
1064 SkDebugf(" %s\n", getSampleTitle(i).c_str());
1065 }
1066}
1067
reed@android.com55e76b22009-11-23 21:46:47 +00001068static SkBitmap capture_bitmap(SkCanvas* canvas) {
1069 SkBitmap bm;
1070 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
1071 src.copyTo(&bm, src.config());
1072 return bm;
1073}
1074
1075static bool bitmap_diff(SkCanvas* canvas, const SkBitmap& orig,
1076 SkBitmap* diff) {
1077 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001078
reed@android.com55e76b22009-11-23 21:46:47 +00001079 SkAutoLockPixels alp0(src);
1080 SkAutoLockPixels alp1(orig);
1081 for (int y = 0; y < src.height(); y++) {
1082 const void* srcP = src.getAddr(0, y);
1083 const void* origP = orig.getAddr(0, y);
1084 size_t bytes = src.width() * src.bytesPerPixel();
1085 if (memcmp(srcP, origP, bytes)) {
1086 SkDebugf("---------- difference on line %d\n", y);
1087 return true;
1088 }
1089 }
1090 return false;
1091}
1092
Scroggo0f185c22011-03-24 18:35:50 +00001093static void drawText(SkCanvas* canvas, SkString string, SkScalar left, SkScalar top, SkPaint& paint)
1094{
1095 SkColor desiredColor = paint.getColor();
1096 paint.setColor(SK_ColorWHITE);
1097 const char* c_str = string.c_str();
1098 size_t size = string.size();
1099 SkRect bounds;
1100 paint.measureText(c_str, size, &bounds);
1101 bounds.offset(left, top);
1102 SkScalar inset = SkIntToScalar(-2);
1103 bounds.inset(inset, inset);
1104 canvas->drawRect(bounds, paint);
1105 if (desiredColor != SK_ColorBLACK) {
1106 paint.setColor(SK_ColorBLACK);
1107 canvas->drawText(c_str, size, left + SK_Scalar1, top + SK_Scalar1, paint);
1108 }
1109 paint.setColor(desiredColor);
1110 canvas->drawText(c_str, size, left, top, paint);
1111}
1112
reed@android.com44177402009-11-23 21:07:51 +00001113#define XCLIP_N 8
1114#define YCLIP_N 8
reed@android.come522ca52009-11-23 20:10:41 +00001115
1116void SampleWindow::draw(SkCanvas* canvas) {
reed@android.com44177402009-11-23 21:07:51 +00001117 // update the animation time
bsalomon@google.come8f09102011-09-08 18:48:12 +00001118 if (!gAnimTimePrev && !gAnimTime) {
1119 // first time make delta be 0
1120 gAnimTime = SkTime::GetMSecs();
1121 gAnimTimePrev = gAnimTime;
1122 } else {
1123 gAnimTimePrev = gAnimTime;
1124 gAnimTime = SkTime::GetMSecs();
1125 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001126
reed@google.comf03bb562011-11-11 21:42:12 +00001127 if (fGesture.isActive()) {
1128 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00001129 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001130
djsollen@google.com796763e2012-12-10 14:12:55 +00001131 if (fMeasureFPS) {
1132 fMeasureFPS_Time = 0;
1133 }
1134
reed@android.come522ca52009-11-23 20:10:41 +00001135 if (fNClip) {
reed@android.com55e76b22009-11-23 21:46:47 +00001136 this->INHERITED::draw(canvas);
1137 SkBitmap orig = capture_bitmap(canvas);
reed@android.come522ca52009-11-23 20:10:41 +00001138
1139 const SkScalar w = this->width();
1140 const SkScalar h = this->height();
1141 const SkScalar cw = w / XCLIP_N;
1142 const SkScalar ch = h / YCLIP_N;
1143 for (int y = 0; y < YCLIP_N; y++) {
reed@android.com55e76b22009-11-23 21:46:47 +00001144 SkRect r;
1145 r.fTop = y * ch;
1146 r.fBottom = (y + 1) * ch;
1147 if (y == YCLIP_N - 1) {
1148 r.fBottom = h;
1149 }
reed@android.come522ca52009-11-23 20:10:41 +00001150 for (int x = 0; x < XCLIP_N; x++) {
1151 SkAutoCanvasRestore acr(canvas, true);
reed@android.com55e76b22009-11-23 21:46:47 +00001152 r.fLeft = x * cw;
1153 r.fRight = (x + 1) * cw;
1154 if (x == XCLIP_N - 1) {
1155 r.fRight = w;
1156 }
reed@android.come522ca52009-11-23 20:10:41 +00001157 canvas->clipRect(r);
1158 this->INHERITED::draw(canvas);
1159 }
1160 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001161
reed@android.com55e76b22009-11-23 21:46:47 +00001162 SkBitmap diff;
1163 if (bitmap_diff(canvas, orig, &diff)) {
1164 }
reed@android.come522ca52009-11-23 20:10:41 +00001165 } else {
scroggo@google.com85cade02012-08-17 13:29:50 +00001166 const SkScalar cw = SkScalarDiv(this->width(), SkIntToScalar(fTileCount.width()));
1167 const SkScalar ch = SkScalarDiv(this->height(), SkIntToScalar(fTileCount.height()));
rmistry@google.comae933ce2012-08-23 18:19:56 +00001168
scroggo@google.com85cade02012-08-17 13:29:50 +00001169 for (int y = 0; y < fTileCount.height(); ++y) {
1170 for (int x = 0; x < fTileCount.width(); ++x) {
1171 SkAutoCanvasRestore acr(canvas, true);
1172 canvas->clipRect(SkRect::MakeXYWH(x * cw, y * ch, cw, ch));
1173 this->INHERITED::draw(canvas);
1174 }
1175 }
rmistry@google.comae933ce2012-08-23 18:19:56 +00001176
scroggo@google.com85cade02012-08-17 13:29:50 +00001177 if (!fTileCount.equals(1, 1)) {
1178 SkPaint paint;
1179 paint.setColor(0x60FF00FF);
1180 paint.setStyle(SkPaint::kStroke_Style);
1181 for (int y = 0; y < fTileCount.height(); ++y) {
1182 for (int x = 0; x < fTileCount.width(); ++x) {
1183 canvas->drawRect(SkRect::MakeXYWH(x * cw, y * ch, cw, ch), paint);
1184 }
1185 }
1186 }
reed@android.come522ca52009-11-23 20:10:41 +00001187 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001188 if (fShowZoomer && !fSaveToPdf) {
Scroggo3272ba82011-05-25 20:50:42 +00001189 showZoomer(canvas);
1190 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001191 if (fMagnify && !fSaveToPdf) {
1192 magnify(canvas);
1193 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001194
djsollen@google.com796763e2012-12-10 14:12:55 +00001195 if (fMeasureFPS && fMeasureFPS_Time) {
1196 this->updateTitle();
1197 this->postInvalDelay();
1198 }
1199
reed@google.com29038ed2011-07-06 17:56:47 +00001200 // do this last
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001201 fDevManager->publishCanvas(fDeviceType, canvas, this);
Scroggo3272ba82011-05-25 20:50:42 +00001202}
1203
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001204static float clipW = 200;
1205static float clipH = 200;
1206void SampleWindow::magnify(SkCanvas* canvas) {
1207 SkRect r;
1208 int count = canvas->save();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001209
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001210 SkMatrix m = canvas->getTotalMatrix();
robertphillips@google.com07ef9112012-06-04 13:22:14 +00001211 if (!m.invert(&m)) {
1212 return;
1213 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001214 SkPoint offset, center;
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001215 SkScalar mouseX = fMouseX * SK_Scalar1;
1216 SkScalar mouseY = fMouseY * SK_Scalar1;
1217 m.mapXY(mouseX - clipW/2, mouseY - clipH/2, &offset);
1218 m.mapXY(mouseX, mouseY, &center);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001219
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001220 r.set(0, 0, clipW * m.getScaleX(), clipH * m.getScaleX());
1221 r.offset(offset.fX, offset.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001222
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001223 SkPaint paint;
1224 paint.setColor(0xFF66AAEE);
1225 paint.setStyle(SkPaint::kStroke_Style);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001226 paint.setStrokeWidth(10.f * m.getScaleX());
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001227 //lense offset
1228 //canvas->translate(0, -250);
1229 canvas->drawRect(r, paint);
1230 canvas->clipRect(r);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001231
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001232 m = canvas->getTotalMatrix();
1233 m.setTranslate(-center.fX, -center.fY);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001234 m.postScale(0.5f * fFatBitsScale, 0.5f * fFatBitsScale);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001235 m.postTranslate(center.fX, center.fY);
1236 canvas->concat(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001237
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001238 this->INHERITED::draw(canvas);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001239
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001240 canvas->restoreToCount(count);
1241}
1242
Scroggo3272ba82011-05-25 20:50:42 +00001243void SampleWindow::showZoomer(SkCanvas* canvas) {
Scroggo0f185c22011-03-24 18:35:50 +00001244 int count = canvas->save();
1245 canvas->resetMatrix();
1246 // Ensure the mouse position is on screen.
reed@google.com261b8e22011-04-14 17:53:24 +00001247 int width = SkScalarRound(this->width());
1248 int height = SkScalarRound(this->height());
Scroggo0f185c22011-03-24 18:35:50 +00001249 if (fMouseX >= width) fMouseX = width - 1;
1250 else if (fMouseX < 0) fMouseX = 0;
1251 if (fMouseY >= height) fMouseY = height - 1;
1252 else if (fMouseY < 0) fMouseY = 0;
reed@google.comb36334d2011-05-18 15:07:20 +00001253
Scroggo0f185c22011-03-24 18:35:50 +00001254 SkBitmap bitmap = capture_bitmap(canvas);
reed@google.comb36334d2011-05-18 15:07:20 +00001255 bitmap.lockPixels();
1256
Scroggo0f185c22011-03-24 18:35:50 +00001257 // Find the size of the zoomed in view, forced to be odd, so the examined pixel is in the middle.
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +00001258 int zoomedWidth = (width >> 1) | 1;
1259 int zoomedHeight = (height >> 1) | 1;
Scroggo0f185c22011-03-24 18:35:50 +00001260 SkIRect src;
1261 src.set(0, 0, zoomedWidth / fFatBitsScale, zoomedHeight / fFatBitsScale);
1262 src.offset(fMouseX - (src.width()>>1), fMouseY - (src.height()>>1));
1263 SkRect dest;
1264 dest.set(0, 0, SkIntToScalar(zoomedWidth), SkIntToScalar(zoomedHeight));
1265 dest.offset(SkIntToScalar(width - zoomedWidth), SkIntToScalar(height - zoomedHeight));
1266 SkPaint paint;
1267 // Clear the background behind our zoomed in view
1268 paint.setColor(SK_ColorWHITE);
1269 canvas->drawRect(dest, paint);
1270 canvas->drawBitmapRect(bitmap, &src, dest);
1271 paint.setColor(SK_ColorBLACK);
1272 paint.setStyle(SkPaint::kStroke_Style);
1273 // Draw a border around the pixel in the middle
1274 SkRect originalPixel;
1275 originalPixel.set(SkIntToScalar(fMouseX), SkIntToScalar(fMouseY), SkIntToScalar(fMouseX + 1), SkIntToScalar(fMouseY + 1));
1276 SkMatrix matrix;
1277 SkRect scalarSrc;
1278 scalarSrc.set(src);
1279 SkColor color = bitmap.getColor(fMouseX, fMouseY);
1280 if (matrix.setRectToRect(scalarSrc, dest, SkMatrix::kFill_ScaleToFit)) {
1281 SkRect pixel;
1282 matrix.mapRect(&pixel, originalPixel);
1283 // TODO Perhaps measure the values and make the outline white if it's "dark"
1284 if (color == SK_ColorBLACK) {
1285 paint.setColor(SK_ColorWHITE);
1286 }
1287 canvas->drawRect(pixel, paint);
1288 }
1289 paint.setColor(SK_ColorBLACK);
1290 // Draw a border around the destination rectangle
1291 canvas->drawRect(dest, paint);
1292 paint.setStyle(SkPaint::kStrokeAndFill_Style);
1293 // Identify the pixel and its color on screen
1294 paint.setTypeface(fTypeface);
1295 paint.setAntiAlias(true);
1296 SkScalar lineHeight = paint.getFontMetrics(NULL);
1297 SkString string;
1298 string.appendf("(%i, %i)", fMouseX, fMouseY);
1299 SkScalar left = dest.fLeft + SkIntToScalar(3);
1300 SkScalar i = SK_Scalar1;
1301 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1302 // Alpha
1303 i += SK_Scalar1;
1304 string.reset();
1305 string.appendf("A: %X", SkColorGetA(color));
1306 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1307 // Red
1308 i += SK_Scalar1;
1309 string.reset();
1310 string.appendf("R: %X", SkColorGetR(color));
1311 paint.setColor(SK_ColorRED);
1312 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1313 // Green
1314 i += SK_Scalar1;
1315 string.reset();
1316 string.appendf("G: %X", SkColorGetG(color));
1317 paint.setColor(SK_ColorGREEN);
1318 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1319 // Blue
1320 i += SK_Scalar1;
1321 string.reset();
1322 string.appendf("B: %X", SkColorGetB(color));
1323 paint.setColor(SK_ColorBLUE);
1324 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1325 canvas->restoreToCount(count);
reed@android.come522ca52009-11-23 20:10:41 +00001326}
1327
reed@android.com8a1c16f2008-12-17 15:59:43 +00001328void SampleWindow::onDraw(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001329}
1330
1331#include "SkColorPriv.h"
1332
caryclark@google.com02939ce2012-06-06 12:09:51 +00001333#if 0 // UNUSED
reed@android.com8a1c16f2008-12-17 15:59:43 +00001334static void reverseRedAndBlue(const SkBitmap& bm) {
1335 SkASSERT(bm.config() == SkBitmap::kARGB_8888_Config);
1336 uint8_t* p = (uint8_t*)bm.getPixels();
1337 uint8_t* stop = p + bm.getSize();
1338 while (p < stop) {
1339 // swap red/blue (to go from ARGB(int) to RGBA(memory) and premultiply
1340 unsigned scale = SkAlpha255To256(p[3]);
1341 unsigned r = p[2];
1342 unsigned b = p[0];
1343 p[0] = SkAlphaMul(r, scale);
1344 p[1] = SkAlphaMul(p[1], scale);
1345 p[2] = SkAlphaMul(b, scale);
1346 p += 4;
1347 }
1348}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001349#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001350
Scroggo8ac0d542011-06-21 14:44:57 +00001351void SampleWindow::saveToPdf()
1352{
1353 fSaveToPdf = true;
1354 this->inval(NULL);
1355}
1356
reed@android.com8a1c16f2008-12-17 15:59:43 +00001357SkCanvas* SampleWindow::beforeChildren(SkCanvas* canvas) {
Scroggo8ac0d542011-06-21 14:44:57 +00001358 if (fSaveToPdf) {
1359 const SkBitmap& bmp = canvas->getDevice()->accessBitmap(false);
1360 SkISize size = SkISize::Make(bmp.width(), bmp.height());
1361 SkPDFDevice* pdfDevice = new SkPDFDevice(size, size,
1362 canvas->getTotalMatrix());
1363 fPdfCanvas = new SkCanvas(pdfDevice);
1364 pdfDevice->unref();
1365 canvas = fPdfCanvas;
bsalomon@google.com82502e22013-01-24 20:47:18 +00001366 } else if (kPicture_DeviceType == fDeviceType) {
1367 fPicture = new SkPicture;
1368 canvas = fPicture->beginRecording(9999, 9999);
Scroggo8ac0d542011-06-21 14:44:57 +00001369 } else {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001370#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00001371 if (kNullGPU_DeviceType != fDeviceType)
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001372#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +00001373 {
1374 canvas = this->INHERITED::beforeChildren(canvas);
reed@google.comac10a2d2010-12-22 21:39:39 +00001375 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001376 }
1377
1378 if (fUseClip) {
1379 canvas->drawColor(0xFFFF88FF);
reed@google.com045e62d2011-10-24 12:19:46 +00001380 canvas->clipPath(fClipPath, SkRegion::kIntersect_Op, true);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001381 }
1382
1383 return canvas;
1384}
1385
1386static void paint_rgn(const SkBitmap& bm, const SkIRect& r,
1387 const SkRegion& rgn) {
1388 SkCanvas canvas(bm);
1389 SkRegion inval(rgn);
1390
1391 inval.translate(r.fLeft, r.fTop);
1392 canvas.clipRegion(inval);
1393 canvas.drawColor(0xFFFF8080);
1394}
yangsu@google.com501775e2011-06-24 16:04:50 +00001395#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +00001396void SampleWindow::afterChildren(SkCanvas* orig) {
Scroggo8ac0d542011-06-21 14:44:57 +00001397 if (fSaveToPdf) {
1398 fSaveToPdf = false;
1399 if (fShowZoomer) {
1400 showZoomer(fPdfCanvas);
1401 }
1402 SkString name;
1403 name.printf("%s.pdf", this->getTitle());
1404 SkPDFDocument doc;
1405 SkPDFDevice* device = static_cast<SkPDFDevice*>(fPdfCanvas->getDevice());
1406 doc.appendPage(device);
djsollen@google.com56c69772011-11-08 19:00:26 +00001407#ifdef SK_BUILD_FOR_ANDROID
Scroggo8ac0d542011-06-21 14:44:57 +00001408 name.prepend("/sdcard/");
1409#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +00001410
yangsu@google.com501775e2011-06-24 16:04:50 +00001411#ifdef SK_BUILD_FOR_IOS
1412 SkDynamicMemoryWStream mstream;
1413 doc.emitPDF(&mstream);
yangsu@google.comae8a2e52011-06-24 21:09:39 +00001414 fPDFData = mstream.copyToData();
yangsu@google.com501775e2011-06-24 16:04:50 +00001415#endif
Scroggo8ac0d542011-06-21 14:44:57 +00001416 SkFILEWStream stream(name.c_str());
1417 if (stream.isValid()) {
1418 doc.emitPDF(&stream);
1419 const char* desc = "File saved from Skia SampleApp";
1420 this->onPDFSaved(this->getTitle(), desc, name.c_str());
1421 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001422
Scroggo8ac0d542011-06-21 14:44:57 +00001423 delete fPdfCanvas;
1424 fPdfCanvas = NULL;
1425
1426 // We took over the draw calls in order to create the PDF, so we need
1427 // to redraw.
1428 this->inval(NULL);
1429 return;
1430 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001431
reed@android.comf2b98d62010-12-20 18:26:13 +00001432 if (fRequestGrabImage) {
1433 fRequestGrabImage = false;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001434
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001435 SkBaseDevice* device = orig->getDevice();
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001436 SkBitmap bmp;
1437 if (device->accessBitmap(false).copyTo(&bmp, SkBitmap::kARGB_8888_Config)) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001438 static int gSampleGrabCounter;
1439 SkString name;
reed@google.com7c57e0e2012-09-08 21:20:33 +00001440 name.printf("sample_grab_%d.png", gSampleGrabCounter++);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001441 SkImageEncoder::EncodeFile(name.c_str(), bmp,
reed@android.comf2b98d62010-12-20 18:26:13 +00001442 SkImageEncoder::kPNG_Type, 100);
1443 }
1444 }
1445
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001446 if (kPicture_DeviceType == fDeviceType) {
1447 if (true) {
1448 SkPicture* pict = new SkPicture(*fPicture);
1449 fPicture->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001450 this->installDrawFilter(orig);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001451 orig->drawPicture(*pict);
1452 pict->unref();
1453 } else if (true) {
1454 SkDynamicMemoryWStream ostream;
1455 fPicture->serialize(&ostream);
1456 fPicture->unref();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001457
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001458 SkAutoDataUnref data(ostream.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001459 SkMemoryStream istream(data->data(), data->size());
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001460 SkAutoTUnref<SkPicture> pict(SkPicture::CreateFromStream(&istream));
1461 if (pict.get() != NULL) {
1462 orig->drawPicture(*pict.get());
1463 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001464 } else {
1465 fPicture->draw(orig);
1466 fPicture->unref();
1467 }
1468 fPicture = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001469 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001470
reed@google.com17d7aec2011-04-25 14:31:44 +00001471 // Do this after presentGL and other finishing, rather than in afterChild
djsollen@google.com796763e2012-12-10 14:12:55 +00001472 if (fMeasureFPS && fMeasureFPS_StartTime) {
1473 fMeasureFPS_Time += SkTime::GetMSecs() - fMeasureFPS_StartTime;
reed@google.com17d7aec2011-04-25 14:31:44 +00001474 }
1475
1476 // if ((fScrollTestX | fScrollTestY) != 0)
reed@android.comf2b98d62010-12-20 18:26:13 +00001477 if (false) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001478 const SkBitmap& bm = orig->getDevice()->accessBitmap(true);
1479 int dx = fScrollTestX * 7;
1480 int dy = fScrollTestY * 7;
1481 SkIRect r;
1482 SkRegion inval;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001483
reed@android.com8a1c16f2008-12-17 15:59:43 +00001484 r.set(50, 50, 50+100, 50+100);
1485 bm.scrollRect(&r, dx, dy, &inval);
1486 paint_rgn(bm, r, inval);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001487 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001488}
1489
reed@android.com6c5f6f22009-08-14 16:08:38 +00001490void SampleWindow::beforeChild(SkView* child, SkCanvas* canvas) {
reed@android.com6c5f6f22009-08-14 16:08:38 +00001491 if (fRotate) {
bungeman@google.comb1785912013-07-09 21:58:56 +00001492 fRotateAnimTime += SampleCode::GetAnimSecondsDelta();
1493
reed@android.com6c5f6f22009-08-14 16:08:38 +00001494 SkScalar cx = this->width() / 2;
1495 SkScalar cy = this->height() / 2;
1496 canvas->translate(cx, cy);
bungeman@google.comb1785912013-07-09 21:58:56 +00001497 canvas->rotate(fRotateAnimTime * 10);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001498 canvas->translate(-cx, -cy);
1499 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001500
bsalomon@google.come8f09102011-09-08 18:48:12 +00001501 if (fPerspAnim) {
bsalomon@google.com6fb736f2011-09-16 18:51:57 +00001502 fPerspAnimTime += SampleCode::GetAnimSecondsDelta();
1503
1504 static const SkScalar gAnimPeriod = 10 * SK_Scalar1;
1505 static const SkScalar gAnimMag = SK_Scalar1 / 1000;
1506 SkScalar t = SkScalarMod(fPerspAnimTime, gAnimPeriod);
1507 if (SkScalarFloorToInt(SkScalarDiv(fPerspAnimTime, gAnimPeriod)) & 0x1) {
1508 t = gAnimPeriod - t;
1509 }
1510 t = 2 * t - gAnimPeriod;
1511 t = SkScalarMul(SkScalarDiv(t, gAnimPeriod), gAnimMag);
1512 SkMatrix m;
1513 m.reset();
1514 m.setPerspY(t);
bsalomon@google.come8f09102011-09-08 18:48:12 +00001515 canvas->concat(m);
1516 }
reed@google.comf0b5f682011-03-11 20:08:25 +00001517
reed@google.come23f1942011-12-08 19:36:00 +00001518 this->installDrawFilter(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001519
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001520 if (fMeasureFPS) {
reed@google.comf2183392011-04-22 14:10:48 +00001521 if (SampleView::SetRepeatDraw(child, FPS_REPEAT_COUNT)) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001522 fMeasureFPS_StartTime = SkTime::GetMSecs();
reed@google.comf2183392011-04-22 14:10:48 +00001523 }
1524 } else {
1525 (void)SampleView::SetRepeatDraw(child, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001526 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001527 if (fPerspAnim || fRotate) {
bsalomon@google.come8f09102011-09-08 18:48:12 +00001528 this->inval(NULL);
1529 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00001530}
1531
1532void SampleWindow::afterChild(SkView* child, SkCanvas* canvas) {
reed@google.comf0b5f682011-03-11 20:08:25 +00001533 canvas->setDrawFilter(NULL);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001534}
1535
reed@android.com8a1c16f2008-12-17 15:59:43 +00001536static SkBitmap::Config gConfigCycle[] = {
1537 SkBitmap::kNo_Config, // none -> none
reed@android.com8a1c16f2008-12-17 15:59:43 +00001538 SkBitmap::kNo_Config, // a8 -> none
1539 SkBitmap::kNo_Config, // index8 -> none
1540 SkBitmap::kARGB_4444_Config, // 565 -> 4444
1541 SkBitmap::kARGB_8888_Config, // 4444 -> 8888
1542 SkBitmap::kRGB_565_Config // 8888 -> 565
1543};
1544
1545static SkBitmap::Config cycle_configs(SkBitmap::Config c) {
1546 return gConfigCycle[c];
1547}
1548
djsollen@google.come32b5832011-06-13 16:58:40 +00001549void SampleWindow::changeZoomLevel(float delta) {
commit-bot@chromium.org4b413c82013-11-25 19:44:07 +00001550 fZoomLevel += delta;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001551 if (fZoomLevel > 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001552 fZoomLevel = SkMinScalar(fZoomLevel, MAX_ZOOM_LEVEL);
1553 fZoomScale = fZoomLevel + SK_Scalar1;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001554 } else if (fZoomLevel < 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001555 fZoomLevel = SkMaxScalar(fZoomLevel, MIN_ZOOM_LEVEL);
1556 fZoomScale = SK_Scalar1 / (SK_Scalar1 - fZoomLevel);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001557 } else {
1558 fZoomScale = SK_Scalar1;
1559 }
reed@google.comf03bb562011-11-11 21:42:12 +00001560 this->updateMatrix();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001561}
1562
reed@google.comf03bb562011-11-11 21:42:12 +00001563void SampleWindow::updateMatrix(){
1564 SkMatrix m;
1565 m.reset();
1566 if (fZoomLevel) {
1567 SkPoint center;
1568 //m = this->getLocalMatrix();//.invert(&m);
1569 m.mapXY(fZoomCenterX, fZoomCenterY, &center);
1570 SkScalar cx = center.fX;
1571 SkScalar cy = center.fY;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001572
reed@google.comf03bb562011-11-11 21:42:12 +00001573 m.setTranslate(-cx, -cy);
1574 m.postScale(fZoomScale, fZoomScale);
1575 m.postTranslate(cx, cy);
1576 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001577
reed@google.comf03bb562011-11-11 21:42:12 +00001578 if (fFlipAxis) {
1579 m.preTranslate(fZoomCenterX, fZoomCenterY);
1580 if (fFlipAxis & kFlipAxis_X) {
1581 m.preScale(-SK_Scalar1, SK_Scalar1);
1582 }
1583 if (fFlipAxis & kFlipAxis_Y) {
1584 m.preScale(SK_Scalar1, -SK_Scalar1);
1585 }
1586 m.preTranslate(-fZoomCenterX, -fZoomCenterY);
1587 //canvas->concat(m);
1588 }
1589 // Apply any gesture matrix
1590 m.preConcat(fGesture.localM());
1591 m.preConcat(fGesture.globalM());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001592
reed@google.comf03bb562011-11-11 21:42:12 +00001593 this->setLocalMatrix(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001594
reed@google.comf03bb562011-11-11 21:42:12 +00001595 this->updateTitle();
1596 this->inval(NULL);
1597}
Scroggo2c8208f2011-06-15 16:49:08 +00001598bool SampleWindow::previousSample() {
Scroggo62b65b02011-06-21 16:01:26 +00001599 fCurrIndex = (fCurrIndex - 1 + fSamples.count()) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001600 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001601 fTransitionPrev));
Scroggo2c8208f2011-06-15 16:49:08 +00001602 return true;
1603}
1604
reed@android.com8a1c16f2008-12-17 15:59:43 +00001605bool SampleWindow::nextSample() {
reed@android.com34245c72009-11-03 04:00:48 +00001606 fCurrIndex = (fCurrIndex + 1) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001607 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001608 fTransitionNext));
reed@android.com34245c72009-11-03 04:00:48 +00001609 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001610}
1611
yangsu@google.com501775e2011-06-24 16:04:50 +00001612bool SampleWindow::goToSample(int i) {
1613 fCurrIndex = (i) % fSamples.count();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001614 this->loadView(create_transition(curr_view(this),(*fSamples[fCurrIndex])(), 6));
yangsu@google.com501775e2011-06-24 16:04:50 +00001615 return true;
1616}
1617
1618SkString SampleWindow::getSampleTitle(int i) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001619 return ::getSampleTitle(fSamples[i]);
yangsu@google.com501775e2011-06-24 16:04:50 +00001620}
1621
1622int SampleWindow::sampleCount() {
1623 return fSamples.count();
1624}
1625
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001626void SampleWindow::showOverview() {
chudy@google.com4605a3f2012-08-01 17:58:01 +00001627 this->loadView(create_transition(curr_view(this),
1628 create_overview(fSamples.count(), fSamples.begin()),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001629 4));
1630}
1631
reed@google.come23f1942011-12-08 19:36:00 +00001632void SampleWindow::installDrawFilter(SkCanvas* canvas) {
bungeman@google.com96aabc82013-06-03 21:26:34 +00001633 canvas->setDrawFilter(new FlagsDrawFilter(fLCDState, fAAState, fFilterState, fSubpixelState,
1634 fHintingState))->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001635}
1636
Scroggo2c8208f2011-06-15 16:49:08 +00001637void SampleWindow::postAnimatingEvent() {
1638 if (fAnimating) {
reed@google.com87fac4a2011-08-04 13:50:17 +00001639 (new SkEvent(ANIMATING_EVENTTYPE, this->getSinkID()))->postDelay(ANIMATING_DELAY);
Scroggo2c8208f2011-06-15 16:49:08 +00001640 }
1641}
reed@google.come23f1942011-12-08 19:36:00 +00001642
reed@android.com8a1c16f2008-12-17 15:59:43 +00001643bool SampleWindow::onEvent(const SkEvent& evt) {
reed@google.com2072db82011-11-08 15:18:10 +00001644 if (evt.isType(gUpdateWindowTitleEvtName)) {
1645 this->updateTitle();
1646 return true;
1647 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001648 if (evt.isType(ANIMATING_EVENTTYPE)) {
1649 if (fAnimating) {
1650 this->nextSample();
1651 this->postAnimatingEvent();
1652 }
1653 return true;
1654 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001655 if (evt.isType("replace-transition-view")) {
1656 this->loadView((SkView*)SkEventSink::FindSink(evt.getFast32()));
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001657 return true;
1658 }
reed@android.com34245c72009-11-03 04:00:48 +00001659 if (evt.isType("set-curr-index")) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001660 this->goToSample(evt.getFast32());
reed@android.com34245c72009-11-03 04:00:48 +00001661 return true;
1662 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001663 if (isInvalEvent(evt)) {
1664 this->inval(NULL);
1665 return true;
1666 }
yangsu@google.com921091f2011-08-02 13:39:12 +00001667 int selected = -1;
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001668 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001669 this->setDeviceType((DeviceType)selected);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001670 return true;
yangsu@google.com921091f2011-08-02 13:39:12 +00001671 }
scroggo@google.comb073d922012-06-08 15:35:03 +00001672 if (SkOSMenu::FindTriState(evt, "Pipe", &fPipeState)) {
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001673#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00001674 if (!fPipeState != SkOSMenu::kOnState)
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001675 gServer.disconnectAll();
1676#endif
scroggo@google.comb073d922012-06-08 15:35:03 +00001677 (void)SampleView::SetUsePipe(curr_view(this), fPipeState);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001678 this->updateTitle();
1679 this->inval(NULL);
yangsu@google.com921091f2011-08-02 13:39:12 +00001680 return true;
1681 }
reed@google.com67b89ee2012-08-15 14:41:58 +00001682 if (SkOSMenu::FindTriState(evt, "Tiling", &fTilingState)) {
1683 int nx = 1, ny = 1;
1684 switch (fTilingState) {
1685 case SkOSMenu::kOffState: nx = 1; ny = 1; break;
reed@google.com56b64a52012-08-15 20:44:36 +00001686 case SkOSMenu::kMixedState: nx = 1; ny = 16; break;
1687 case SkOSMenu::kOnState: nx = 4; ny = 4; break;
reed@google.com67b89ee2012-08-15 14:41:58 +00001688 }
scroggo@google.com85cade02012-08-17 13:29:50 +00001689 fTileCount.set(nx, ny);
reed@google.com67b89ee2012-08-15 14:41:58 +00001690 this->inval(NULL);
1691 return true;
1692 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001693 if (SkOSMenu::FindSwitchState(evt, "Slide Show", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001694 this->toggleSlideshow();
1695 return true;
1696 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001697 if (SkOSMenu::FindTriState(evt, "AA", &fAAState) ||
1698 SkOSMenu::FindTriState(evt, "LCD", &fLCDState) ||
1699 SkOSMenu::FindTriState(evt, "Filter", &fFilterState) ||
bungeman@google.com96aabc82013-06-03 21:26:34 +00001700 SkOSMenu::FindTriState(evt, "Subpixel", &fSubpixelState) ||
1701 SkOSMenu::FindListIndex(evt, "Hinting", &fHintingState) ||
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001702 SkOSMenu::FindSwitchState(evt, "Clip", &fUseClip) ||
1703 SkOSMenu::FindSwitchState(evt, "Zoomer", &fShowZoomer) ||
1704 SkOSMenu::FindSwitchState(evt, "Magnify", &fMagnify) ||
1705 SkOSMenu::FindListIndex(evt, "Transition-Next", &fTransitionNext) ||
1706 SkOSMenu::FindListIndex(evt, "Transition-Prev", &fTransitionPrev)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001707 this->inval(NULL);
1708 this->updateTitle();
1709 return true;
1710 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001711 if (SkOSMenu::FindSwitchState(evt, "Flip X", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001712 fFlipAxis ^= kFlipAxis_X;
reed@google.comf03bb562011-11-11 21:42:12 +00001713 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001714 return true;
1715 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001716 if (SkOSMenu::FindSwitchState(evt, "Flip Y", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001717 fFlipAxis ^= kFlipAxis_Y;
reed@google.comf03bb562011-11-11 21:42:12 +00001718 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001719 return true;
1720 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001721 if (SkOSMenu::FindAction(evt,"Save to PDF")) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001722 this->saveToPdf();
1723 return true;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001724 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001725 return this->INHERITED::onEvent(evt);
1726}
1727
reed@android.comf2b98d62010-12-20 18:26:13 +00001728bool SampleWindow::onQuery(SkEvent* query) {
1729 if (query->isType("get-slide-count")) {
1730 query->setFast32(fSamples.count());
1731 return true;
1732 }
1733 if (query->isType("get-slide-title")) {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001734 SkView* view = (*fSamples[query->getFast32()])();
reed@android.comf2b98d62010-12-20 18:26:13 +00001735 SkEvent evt(gTitleEvtName);
1736 if (view->doQuery(&evt)) {
1737 query->setString("title", evt.findString(gTitleEvtName));
1738 }
1739 SkSafeUnref(view);
1740 return true;
1741 }
1742 if (query->isType("use-fast-text")) {
1743 SkEvent evt(gFastTextEvtName);
1744 return curr_view(this)->doQuery(&evt);
1745 }
reed@google.com29038ed2011-07-06 17:56:47 +00001746 if (query->isType("ignore-window-bitmap")) {
1747 query->setFast32(this->getGrContext() != NULL);
1748 return true;
1749 }
reed@android.comf2b98d62010-12-20 18:26:13 +00001750 return this->INHERITED::onQuery(query);
1751}
1752
caryclark@google.com02939ce2012-06-06 12:09:51 +00001753#if 0 // UNUSED
reed@android.com0ae6b242008-12-23 16:49:54 +00001754static void cleanup_for_filename(SkString* name) {
1755 char* str = name->writable_str();
reed@android.come191b162009-12-18 21:33:39 +00001756 for (size_t i = 0; i < name->size(); i++) {
reed@android.com0ae6b242008-12-23 16:49:54 +00001757 switch (str[i]) {
1758 case ':': str[i] = '-'; break;
1759 case '/': str[i] = '-'; break;
1760 case ' ': str[i] = '_'; break;
1761 default: break;
1762 }
1763 }
1764}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001765#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001766
reed@google.coma4f81372012-11-15 15:56:38 +00001767//extern bool gIgnoreFastBlurRect;
1768
reed@android.com8a1c16f2008-12-17 15:59:43 +00001769bool SampleWindow::onHandleChar(SkUnichar uni) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001770 {
1771 SkView* view = curr_view(this);
1772 if (view) {
1773 SkEvent evt(gCharEvtName);
1774 evt.setFast32(uni);
1775 if (view->doQuery(&evt)) {
1776 return true;
1777 }
1778 }
1779 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001780
reed@android.com8a1c16f2008-12-17 15:59:43 +00001781 int dx = 0xFF;
1782 int dy = 0xFF;
1783
1784 switch (uni) {
1785 case '5': dx = 0; dy = 0; break;
1786 case '8': dx = 0; dy = -1; break;
1787 case '6': dx = 1; dy = 0; break;
1788 case '2': dx = 0; dy = 1; break;
1789 case '4': dx = -1; dy = 0; break;
1790 case '7': dx = -1; dy = -1; break;
1791 case '9': dx = 1; dy = -1; break;
1792 case '3': dx = 1; dy = 1; break;
1793 case '1': dx = -1; dy = 1; break;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001794
reed@android.com8a1c16f2008-12-17 15:59:43 +00001795 default:
1796 break;
1797 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001798
reed@android.com8a1c16f2008-12-17 15:59:43 +00001799 if (0xFF != dx && 0xFF != dy) {
1800 if ((dx | dy) == 0) {
1801 fScrollTestX = fScrollTestY = 0;
1802 } else {
1803 fScrollTestX += dx;
1804 fScrollTestY += dy;
1805 }
1806 this->inval(NULL);
1807 return true;
1808 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001809
reed@android.com0ae6b242008-12-23 16:49:54 +00001810 switch (uni) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001811 case 'b':
1812 {
1813 postEventToSink(SkNEW_ARGS(SkEvent, ("PictFileView::toggleBBox")), curr_view(this));
1814 this->updateTitle();
1815 this->inval(NULL);
1816 break;
1817 }
reed@google.coma4f81372012-11-15 15:56:38 +00001818 case 'B':
1819// gIgnoreFastBlurRect = !gIgnoreFastBlurRect;
1820 this->inval(NULL);
1821 break;
1822
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001823 case 'f':
chudy@google.com4605a3f2012-08-01 17:58:01 +00001824 // only
djsollen@google.com6ff82552011-11-07 15:43:57 +00001825 toggleFPS();
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001826 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001827 case 'g':
1828 fRequestGrabImage = true;
1829 this->inval(NULL);
1830 break;
reed@google.coma4f81372012-11-15 15:56:38 +00001831 case 'G':
1832 gShowGMBounds = !gShowGMBounds;
1833 postEventToSink(GMSampleView::NewShowSizeEvt(gShowGMBounds),
1834 curr_view(this));
1835 this->inval(NULL);
1836 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001837 case 'i':
1838 this->zoomIn();
1839 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001840 case 'o':
1841 this->zoomOut();
1842 break;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001843 case 'r':
1844 fRotate = !fRotate;
bungeman@google.comb1785912013-07-09 21:58:56 +00001845 fRotateAnimTime = 0;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001846 this->inval(NULL);
1847 this->updateTitle();
1848 return true;
bsalomon@google.come8f09102011-09-08 18:48:12 +00001849 case 'k':
1850 fPerspAnim = !fPerspAnim;
1851 this->inval(NULL);
1852 this->updateTitle();
1853 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001854#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00001855 case '\\':
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001856 this->setDeviceType(kNullGPU_DeviceType);
1857 this->inval(NULL);
1858 this->updateTitle();
bsalomon@google.com74913722011-10-27 20:44:19 +00001859 return true;
twiz@google.com05e70242012-01-27 19:12:00 +00001860 case 'p':
1861 {
1862 GrContext* grContext = this->getGrContext();
1863 if (grContext) {
1864 size_t cacheBytes = grContext->getGpuTextureCacheBytes();
1865 grContext->freeGpuResources();
1866 SkDebugf("Purged %d bytes from the GPU resource cache.\n",
1867 cacheBytes);
1868 }
1869 }
1870 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001871#endif
reed@android.com0ae6b242008-12-23 16:49:54 +00001872 default:
1873 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001874 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001875
scroggo@google.com7dadc742012-04-18 14:07:57 +00001876 if (fAppMenu->handleKeyEquivalent(uni)|| fSlideMenu->handleKeyEquivalent(uni)) {
1877 this->onUpdateMenu(fAppMenu);
1878 this->onUpdateMenu(fSlideMenu);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001879 return true;
1880 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001881 return this->INHERITED::onHandleChar(uni);
1882}
1883
yangsu@google.com921091f2011-08-02 13:39:12 +00001884void SampleWindow::setDeviceType(DeviceType type) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001885 if (type == fDeviceType)
1886 return;
1887
1888 fDevManager->tearDownBackend(this);
1889
1890 fDeviceType = type;
1891
bsalomon@google.com11959252012-04-06 20:13:38 +00001892 fDevManager->setUpBackend(this, fMSAASampleCount);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001893
yangsu@google.com921091f2011-08-02 13:39:12 +00001894 this->updateTitle();
1895 this->inval(NULL);
1896}
1897
Scroggo2c8208f2011-06-15 16:49:08 +00001898void SampleWindow::toggleSlideshow() {
1899 fAnimating = !fAnimating;
1900 this->postAnimatingEvent();
1901 this->updateTitle();
1902}
1903
1904void SampleWindow::toggleRendering() {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001905 this->setDeviceType(cycle_devicetype(fDeviceType));
Scroggo2c8208f2011-06-15 16:49:08 +00001906 this->updateTitle();
1907 this->inval(NULL);
1908}
1909
djsollen@google.com6ff82552011-11-07 15:43:57 +00001910void SampleWindow::toggleFPS() {
1911 fMeasureFPS = !fMeasureFPS;
1912 this->updateTitle();
1913 this->inval(NULL);
1914}
1915
reed@android.com8a1c16f2008-12-17 15:59:43 +00001916#include "SkDumpCanvas.h"
1917
1918bool SampleWindow::onHandleKey(SkKey key) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001919 {
1920 SkView* view = curr_view(this);
1921 if (view) {
1922 SkEvent evt(gKeyEvtName);
1923 evt.setFast32(key);
1924 if (view->doQuery(&evt)) {
1925 return true;
1926 }
1927 }
1928 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001929 switch (key) {
1930 case kRight_SkKey:
1931 if (this->nextSample()) {
1932 return true;
1933 }
1934 break;
1935 case kLeft_SkKey:
scroggo@google.come2dd9732012-08-15 20:03:06 +00001936 if (this->previousSample()) {
1937 return true;
1938 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001939 return true;
1940 case kUp_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001941 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00001942 this->changeZoomLevel(1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001943 } else {
1944 fNClip = !fNClip;
1945 this->inval(NULL);
djsollen@google.come32b5832011-06-13 16:58:40 +00001946 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001947 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001948 return true;
1949 case kDown_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001950 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00001951 this->changeZoomLevel(-1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001952 } else {
1953 this->setConfig(cycle_configs(this->getBitmap().config()));
djsollen@google.come32b5832011-06-13 16:58:40 +00001954 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001955 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001956 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001957 case kOK_SkKey: {
1958 SkString title;
1959 if (curr_title(this, &title)) {
1960 writeTitleToPrefs(title.c_str());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001961 }
1962 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001963 }
reed@android.com34245c72009-11-03 04:00:48 +00001964 case kBack_SkKey:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001965 this->showOverview();
reed@android.com34245c72009-11-03 04:00:48 +00001966 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001967 default:
1968 break;
1969 }
1970 return this->INHERITED::onHandleKey(key);
1971}
1972
reed@google.com52f57e12011-03-16 12:10:02 +00001973///////////////////////////////////////////////////////////////////////////////
1974
1975static const char gGestureClickType[] = "GestureClickType";
1976
Scroggod3aed392011-06-22 13:26:56 +00001977bool SampleWindow::onDispatchClick(int x, int y, Click::State state,
reed@google.com4d5c26d2013-01-08 16:17:50 +00001978 void* owner, unsigned modi) {
Scroggo0f185c22011-03-24 18:35:50 +00001979 if (Click::kMoved_State == state) {
1980 updatePointer(x, y);
1981 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001982 int w = SkScalarRound(this->width());
1983 int h = SkScalarRound(this->height());
1984
1985 // check for the resize-box
1986 if (w - x < 16 && h - y < 16) {
1987 return false; // let the OS handle the click
chudy@google.com4605a3f2012-08-01 17:58:01 +00001988 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001989 else if (fMagnify) {
1990 //it's only necessary to update the drawing if there's a click
1991 this->inval(NULL);
1992 return false; //prevent dragging while magnify is enabled
reed@google.com4d5c26d2013-01-08 16:17:50 +00001993 } else {
1994 // capture control+option, and trigger debugger
1995 if ((modi & kControl_SkModifierKey) && (modi & kOption_SkModifierKey)) {
1996 if (Click::kDown_State == state) {
1997 SkEvent evt("debug-hit-test");
1998 evt.setS32("debug-hit-test-x", x);
1999 evt.setS32("debug-hit-test-y", y);
2000 curr_view(this)->doEvent(evt);
2001 }
2002 return true;
2003 } else {
2004 return this->INHERITED::onDispatchClick(x, y, state, owner, modi);
2005 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002006 }
2007}
2008
reed@google.com52f57e12011-03-16 12:10:02 +00002009class GestureClick : public SkView::Click {
2010public:
2011 GestureClick(SkView* target) : SkView::Click(target) {
2012 this->setType(gGestureClickType);
2013 }
2014
2015 static bool IsGesture(Click* click) {
2016 return click->isType(gGestureClickType);
2017 }
2018};
2019
reed@google.com4d5c26d2013-01-08 16:17:50 +00002020SkView::Click* SampleWindow::onFindClickHandler(SkScalar x, SkScalar y,
2021 unsigned modi) {
reed@google.com52f57e12011-03-16 12:10:02 +00002022 return new GestureClick(this);
2023}
2024
2025bool SampleWindow::onClick(Click* click) {
2026 if (GestureClick::IsGesture(click)) {
bsalomon@google.com4d4f2812011-12-12 18:34:01 +00002027 float x = static_cast<float>(click->fICurr.fX);
2028 float y = static_cast<float>(click->fICurr.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00002029
reed@google.com52f57e12011-03-16 12:10:02 +00002030 switch (click->fState) {
2031 case SkView::Click::kDown_State:
Scroggod3aed392011-06-22 13:26:56 +00002032 fGesture.touchBegin(click->fOwner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +00002033 break;
2034 case SkView::Click::kMoved_State:
Scroggod3aed392011-06-22 13:26:56 +00002035 fGesture.touchMoved(click->fOwner, x, y);
reed@google.comf03bb562011-11-11 21:42:12 +00002036 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002037 break;
2038 case SkView::Click::kUp_State:
Scroggod3aed392011-06-22 13:26:56 +00002039 fGesture.touchEnd(click->fOwner);
reed@google.comf03bb562011-11-11 21:42:12 +00002040 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002041 break;
2042 }
2043 return true;
2044 }
2045 return false;
2046}
2047
2048///////////////////////////////////////////////////////////////////////////////
2049
reed@android.com8a1c16f2008-12-17 15:59:43 +00002050void SampleWindow::loadView(SkView* view) {
2051 SkView::F2BIter iter(this);
2052 SkView* prev = iter.next();
2053 if (prev) {
2054 prev->detachFromParent();
2055 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002056
reed@android.com8a1c16f2008-12-17 15:59:43 +00002057 view->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +00002058 view->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002059 this->attachChildToFront(view)->unref();
2060 view->setSize(this->width(), this->height());
2061
yangsu@google.com921091f2011-08-02 13:39:12 +00002062 //repopulate the slide menu when a view is loaded
scroggo@google.com7dadc742012-04-18 14:07:57 +00002063 fSlideMenu->reset();
djsollen@google.com388974f2013-01-17 13:20:01 +00002064
scroggo@google.comb073d922012-06-08 15:35:03 +00002065 (void)SampleView::SetUsePipe(view, fPipeState);
yangsu@google.com921091f2011-08-02 13:39:12 +00002066 if (SampleView::IsSampleView(view))
scroggo@google.com7dadc742012-04-18 14:07:57 +00002067 ((SampleView*)view)->requestMenu(fSlideMenu);
2068 this->onUpdateMenu(fSlideMenu);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002069 this->updateTitle();
2070}
2071
2072static const char* gConfigNames[] = {
2073 "unknown config",
reed@android.com8a1c16f2008-12-17 15:59:43 +00002074 "A8",
2075 "Index8",
2076 "565",
2077 "4444",
2078 "8888"
2079};
2080
2081static const char* configToString(SkBitmap::Config c) {
2082 return gConfigNames[c];
2083}
2084
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002085static const char* gDeviceTypePrefix[] = {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002086 "raster: ",
2087 "picture: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002088#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00002089 "opengl: ",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00002090#if SK_ANGLE
2091 "angle: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002092#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +00002093 "null-gl: "
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002094#endif // SK_SUPPORT_GPU
reed@android.com8a1c16f2008-12-17 15:59:43 +00002095};
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002096SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gDeviceTypePrefix) == SampleWindow::kDeviceTypeCnt,
2097 array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002098
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002099static const char* trystate_str(SkOSMenu::TriState state,
reed@google.com569e0432011-04-05 13:07:03 +00002100 const char trueStr[], const char falseStr[]) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002101 if (SkOSMenu::kOnState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002102 return trueStr;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002103 } else if (SkOSMenu::kOffState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002104 return falseStr;
2105 }
2106 return NULL;
2107}
2108
reed@android.com8a1c16f2008-12-17 15:59:43 +00002109void SampleWindow::updateTitle() {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002110 SkView* view = curr_view(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002111
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002112 SkString title;
2113 if (!curr_title(this, &title)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002114 title.set("<unknown>");
2115 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002116
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002117 title.prepend(gDeviceTypePrefix[fDeviceType]);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002118
2119 title.prepend(" ");
2120 title.prepend(configToString(this->getBitmap().config()));
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002121
reed@android.com8a1c16f2008-12-17 15:59:43 +00002122 if (fAnimating) {
2123 title.prepend("<A> ");
2124 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00002125 if (fRotate) {
2126 title.prepend("<R> ");
2127 }
reed@android.come522ca52009-11-23 20:10:41 +00002128 if (fNClip) {
2129 title.prepend("<C> ");
2130 }
bsalomon@google.come8f09102011-09-08 18:48:12 +00002131 if (fPerspAnim) {
2132 title.prepend("<K> ");
2133 }
reed@google.com569e0432011-04-05 13:07:03 +00002134
2135 title.prepend(trystate_str(fLCDState, "LCD ", "lcd "));
2136 title.prepend(trystate_str(fAAState, "AA ", "aa "));
bungeman@google.com96aabc82013-06-03 21:26:34 +00002137 title.prepend(trystate_str(fFilterState, "N ", "n "));
2138 title.prepend(trystate_str(fSubpixelState, "S ", "s "));
reed@google.com569e0432011-04-05 13:07:03 +00002139 title.prepend(fFlipAxis & kFlipAxis_X ? "X " : NULL);
2140 title.prepend(fFlipAxis & kFlipAxis_Y ? "Y " : NULL);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002141 title.prepend(gHintingStates[fHintingState].label);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002142
2143 if (fZoomLevel) {
djsollen@google.come32b5832011-06-13 16:58:40 +00002144 title.prependf("{%.2f} ", SkScalarToFloat(fZoomLevel));
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002145 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002146
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002147 if (fMeasureFPS) {
reed@google.com43e10142012-09-10 11:52:52 +00002148 title.appendf(" %8.3f ms", fMeasureFPS_Time / (float)FPS_REPEAT_COUNT);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002149 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002150 if (SampleView::IsSampleView(view)) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002151 switch (fPipeState) {
2152 case SkOSMenu::kOnState:
2153 title.prepend("<Pipe> ");
2154 break;
2155 case SkOSMenu::kMixedState:
2156 title.prepend("<Tiled Pipe> ");
2157 break;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002158
scroggo@google.comb073d922012-06-08 15:35:03 +00002159 default:
2160 break;
2161 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002162 title.prepend("! ");
2163 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002164
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002165#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00002166 if (IsGpuDeviceType(fDeviceType) &&
robertphillips@google.com4750fa52012-04-10 13:34:11 +00002167 NULL != fDevManager &&
bsalomon@google.com82502e22013-01-24 20:47:18 +00002168 fDevManager->getGrRenderTarget() &&
bsalomon@google.com11959252012-04-06 20:13:38 +00002169 fDevManager->getGrRenderTarget()->numSamples() > 0) {
2170 title.appendf(" [MSAA: %d]",
2171 fDevManager->getGrRenderTarget()->numSamples());
2172 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002173#endif
bsalomon@google.com11959252012-04-06 20:13:38 +00002174
reed@android.com8a1c16f2008-12-17 15:59:43 +00002175 this->setTitle(title.c_str());
2176}
2177
2178void SampleWindow::onSizeChange() {
2179 this->INHERITED::onSizeChange();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002180
reed@android.com8a1c16f2008-12-17 15:59:43 +00002181 SkView::F2BIter iter(this);
2182 SkView* view = iter.next();
2183 view->setSize(this->width(), this->height());
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002184
reed@android.com8a1c16f2008-12-17 15:59:43 +00002185 // rebuild our clippath
2186 {
2187 const SkScalar W = this->width();
2188 const SkScalar H = this->height();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002189
reed@android.com8a1c16f2008-12-17 15:59:43 +00002190 fClipPath.reset();
2191#if 0
2192 for (SkScalar y = SK_Scalar1; y < H; y += SkIntToScalar(32)) {
2193 SkRect r;
2194 r.set(SK_Scalar1, y, SkIntToScalar(30), y + SkIntToScalar(30));
2195 for (; r.fLeft < W; r.offset(SkIntToScalar(32), 0))
2196 fClipPath.addRect(r);
2197 }
2198#else
2199 SkRect r;
2200 r.set(0, 0, W, H);
2201 fClipPath.addRect(r, SkPath::kCCW_Direction);
2202 r.set(W/4, H/4, W*3/4, H*3/4);
2203 fClipPath.addRect(r, SkPath::kCW_Direction);
2204#endif
2205 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002206
Scroggo2c8208f2011-06-15 16:49:08 +00002207 fZoomCenterX = SkScalarHalf(this->width());
2208 fZoomCenterY = SkScalarHalf(this->height());
2209
djsollen@google.com56c69772011-11-08 19:00:26 +00002210#ifdef SK_BUILD_FOR_ANDROID
Scroggob4490c72011-06-17 13:53:05 +00002211 // FIXME: The first draw after a size change does not work on Android, so
2212 // we post an invalidate.
Scroggo62b65b02011-06-21 16:01:26 +00002213 this->postInvalDelay();
Scroggo716a0382011-06-16 14:00:15 +00002214#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00002215 this->updateTitle(); // to refresh our config
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002216 fDevManager->windowSizeChanged(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002217}
2218
2219///////////////////////////////////////////////////////////////////////////////
2220
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002221static const char is_sample_view_tag[] = "sample-is-sample-view";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002222static const char repeat_count_tag[] = "sample-set-repeat-count";
reed@google.com0faac1e2011-05-11 05:58:58 +00002223static const char set_use_pipe_tag[] = "sample-set-use-pipe";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002224
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002225bool SampleView::IsSampleView(SkView* view) {
2226 SkEvent evt(is_sample_view_tag);
2227 return view->doQuery(&evt);
2228}
2229
reed@google.comf2183392011-04-22 14:10:48 +00002230bool SampleView::SetRepeatDraw(SkView* view, int count) {
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002231 SkEvent evt(repeat_count_tag);
2232 evt.setFast32(count);
reed@google.comf2183392011-04-22 14:10:48 +00002233 return view->doEvent(evt);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002234}
2235
scroggo@google.comb073d922012-06-08 15:35:03 +00002236bool SampleView::SetUsePipe(SkView* view, SkOSMenu::TriState state) {
2237 SkEvent evt;
2238 evt.setS32(set_use_pipe_tag, state);
reed@google.com0faac1e2011-05-11 05:58:58 +00002239 return view->doEvent(evt);
2240}
2241
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002242bool SampleView::onEvent(const SkEvent& evt) {
2243 if (evt.isType(repeat_count_tag)) {
2244 fRepeatCount = evt.getFast32();
2245 return true;
2246 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002247
scroggo@google.comb073d922012-06-08 15:35:03 +00002248 int32_t pipeHolder;
2249 if (evt.findS32(set_use_pipe_tag, &pipeHolder)) {
2250 fPipeState = static_cast<SkOSMenu::TriState>(pipeHolder);
reed@google.com0faac1e2011-05-11 05:58:58 +00002251 return true;
2252 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002253
2254 if (evt.isType("debug-hit-test")) {
2255 fDebugHitTest = true;
2256 evt.findS32("debug-hit-test-x", &fDebugHitTestLoc.fX);
2257 evt.findS32("debug-hit-test-y", &fDebugHitTestLoc.fY);
2258 this->inval(NULL);
2259 return true;
2260 }
2261
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002262 return this->INHERITED::onEvent(evt);
2263}
2264
2265bool SampleView::onQuery(SkEvent* evt) {
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002266 if (evt->isType(is_sample_view_tag)) {
2267 return true;
2268 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002269 return this->INHERITED::onQuery(evt);
2270}
2271
reed@google.com64e3eb22011-05-04 14:32:04 +00002272
2273class SimplePC : public SkGPipeController {
2274public:
2275 SimplePC(SkCanvas* target);
2276 ~SimplePC();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002277
reed@google.com64e3eb22011-05-04 14:32:04 +00002278 virtual void* requestBlock(size_t minRequest, size_t* actual);
2279 virtual void notifyWritten(size_t bytes);
2280
2281private:
reed@google.com961ddb02011-05-05 14:03:48 +00002282 SkGPipeReader fReader;
2283 void* fBlock;
2284 size_t fBlockSize;
2285 size_t fBytesWritten;
2286 int fAtomsWritten;
reed@google.com64e3eb22011-05-04 14:32:04 +00002287 SkGPipeReader::Status fStatus;
2288
2289 size_t fTotalWritten;
2290};
2291
2292SimplePC::SimplePC(SkCanvas* target) : fReader(target) {
2293 fBlock = NULL;
2294 fBlockSize = fBytesWritten = 0;
2295 fStatus = SkGPipeReader::kDone_Status;
2296 fTotalWritten = 0;
reed@google.com961ddb02011-05-05 14:03:48 +00002297 fAtomsWritten = 0;
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002298 fReader.setBitmapDecoder(&SkImageDecoder::DecodeMemory);
reed@google.com64e3eb22011-05-04 14:32:04 +00002299}
2300
2301SimplePC::~SimplePC() {
2302// SkASSERT(SkGPipeReader::kDone_Status == fStatus);
reed@google.com0faac1e2011-05-11 05:58:58 +00002303 if (fTotalWritten) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002304 SkDebugf("--- %d bytes %d atoms, status %d\n", fTotalWritten,
2305 fAtomsWritten, fStatus);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002306#ifdef PIPE_FILE
scroggo@google.comb073d922012-06-08 15:35:03 +00002307 //File is open in append mode
2308 FILE* f = fopen(FILE_PATH, "ab");
2309 SkASSERT(f != NULL);
2310 fwrite((const char*)fBlock + fBytesWritten, 1, bytes, f);
2311 fclose(f);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002312#endif
2313#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00002314 if (fAtomsWritten > 1 && fTotalWritten > 4) { //ignore done
2315 gServer.acceptConnections();
2316 gServer.writePacket(fBlock, fTotalWritten);
2317 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002318#endif
reed@google.com0faac1e2011-05-11 05:58:58 +00002319 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002320 sk_free(fBlock);
reed@google.com64e3eb22011-05-04 14:32:04 +00002321}
2322
2323void* SimplePC::requestBlock(size_t minRequest, size_t* actual) {
2324 sk_free(fBlock);
2325
2326 fBlockSize = minRequest * 4;
2327 fBlock = sk_malloc_throw(fBlockSize);
2328 fBytesWritten = 0;
2329 *actual = fBlockSize;
2330 return fBlock;
2331}
2332
2333void SimplePC::notifyWritten(size_t bytes) {
2334 SkASSERT(fBytesWritten + bytes <= fBlockSize);
reed@google.com64e3eb22011-05-04 14:32:04 +00002335 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
2336 SkASSERT(SkGPipeReader::kError_Status != fStatus);
2337 fBytesWritten += bytes;
2338 fTotalWritten += bytes;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002339
reed@google.com961ddb02011-05-05 14:03:48 +00002340 fAtomsWritten += 1;
reed@google.com64e3eb22011-05-04 14:32:04 +00002341}
2342
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002343void SampleView::draw(SkCanvas* canvas) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002344 if (SkOSMenu::kOffState == fPipeState) {
2345 this->INHERITED::draw(canvas);
2346 } else {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002347 SkGPipeWriter writer;
2348 SimplePC controller(canvas);
scroggo@google.comb073d922012-06-08 15:35:03 +00002349 TiledPipeController tc(canvas->getDevice()->accessBitmap(false),
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002350 &SkImageDecoder::DecodeMemory,
scroggo@google.comb073d922012-06-08 15:35:03 +00002351 &canvas->getTotalMatrix());
2352 SkGPipeController* pc;
2353 if (SkOSMenu::kMixedState == fPipeState) {
2354 pc = &tc;
2355 } else {
2356 pc = &controller;
2357 }
reed@google.comdde09562011-05-23 12:21:05 +00002358 uint32_t flags = SkGPipeWriter::kCrossProcess_Flag;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002359
scroggo@google.comb073d922012-06-08 15:35:03 +00002360 canvas = writer.startRecording(pc, flags);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002361 //Must draw before controller goes out of scope and sends data
2362 this->INHERITED::draw(canvas);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00002363 //explicitly end recording to ensure writer is flushed before the memory
2364 //is freed in the deconstructor of the controller
2365 writer.endRecording();
reed@google.com0faac1e2011-05-11 05:58:58 +00002366 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002367}
reed@google.com4d5c26d2013-01-08 16:17:50 +00002368
2369#include "SkBounder.h"
2370
2371class DebugHitTestBounder : public SkBounder {
2372public:
2373 DebugHitTestBounder(int x, int y) {
2374 fLoc.set(x, y);
2375 }
2376
2377 virtual bool onIRect(const SkIRect& bounds) SK_OVERRIDE {
2378 if (bounds.contains(fLoc.x(), fLoc.y())) {
2379 //
2380 // Set a break-point here to see what was being drawn under
2381 // the click point (just needed a line of code to stop the debugger)
2382 //
2383 bounds.centerX();
2384 }
2385 return true;
2386 }
2387
2388private:
2389 SkIPoint fLoc;
2390 typedef SkBounder INHERITED;
2391};
2392
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002393void SampleView::onDraw(SkCanvas* canvas) {
reed@google.com81e3d7f2011-06-01 12:42:36 +00002394 this->onDrawBackground(canvas);
2395
reed@google.com4d5c26d2013-01-08 16:17:50 +00002396 DebugHitTestBounder bounder(fDebugHitTestLoc.x(), fDebugHitTestLoc.y());
2397 if (fDebugHitTest) {
2398 canvas->setBounder(&bounder);
2399 }
2400
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002401 for (int i = 0; i < fRepeatCount; i++) {
scroggo@google.com85cade02012-08-17 13:29:50 +00002402 SkAutoCanvasRestore acr(canvas, true);
2403 this->onDrawContent(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002404 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002405
2406 fDebugHitTest = false;
2407 canvas->setBounder(NULL);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002408}
2409
2410void SampleView::onDrawBackground(SkCanvas* canvas) {
reed@google.comf2183392011-04-22 14:10:48 +00002411 canvas->drawColor(fBGColor);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002412}
2413
2414///////////////////////////////////////////////////////////////////////////////
2415
reed@android.comf2b98d62010-12-20 18:26:13 +00002416template <typename T> void SkTBSort(T array[], int count) {
2417 for (int i = 1; i < count - 1; i++) {
2418 bool didSwap = false;
2419 for (int j = count - 1; j > i; --j) {
2420 if (array[j] < array[j-1]) {
2421 T tmp(array[j-1]);
2422 array[j-1] = array[j];
2423 array[j] = tmp;
2424 didSwap = true;
2425 }
2426 }
2427 if (!didSwap) {
2428 break;
2429 }
2430 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002431
reed@android.comf2b98d62010-12-20 18:26:13 +00002432 for (int k = 0; k < count - 1; k++) {
2433 SkASSERT(!(array[k+1] < array[k]));
2434 }
2435}
2436
2437#include "SkRandom.h"
2438
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002439static void rand_rect(SkIRect* rect, SkRandom& rand) {
reed@android.comf2b98d62010-12-20 18:26:13 +00002440 int bits = 8;
2441 int shift = 32 - bits;
2442 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
2443 rand.nextU() >> shift, rand.nextU() >> shift);
2444 rect->sort();
2445}
2446
2447static void dumpRect(const SkIRect& r) {
2448 SkDebugf(" { %d, %d, %d, %d },\n",
2449 r.fLeft, r.fTop,
2450 r.fRight, r.fBottom);
2451}
2452
2453static void test_rects(const SkIRect rect[], int count) {
2454 SkRegion rgn0, rgn1;
2455
2456 for (int i = 0; i < count; i++) {
2457 rgn0.op(rect[i], SkRegion::kUnion_Op);
2458 // dumpRect(rect[i]);
2459 }
2460 rgn1.setRects(rect, count);
2461
2462 if (rgn0 != rgn1) {
2463 SkDebugf("\n");
2464 for (int i = 0; i < count; i++) {
2465 dumpRect(rect[i]);
2466 }
2467 SkDebugf("\n");
2468 }
2469}
2470
2471static void test() {
2472 size_t i;
2473
2474 const SkIRect r0[] = {
2475 { 0, 0, 1, 1 },
2476 { 2, 2, 3, 3 },
2477 };
2478 const SkIRect r1[] = {
2479 { 0, 0, 1, 3 },
2480 { 1, 1, 2, 2 },
2481 { 2, 0, 3, 3 },
2482 };
2483 const SkIRect r2[] = {
2484 { 0, 0, 1, 2 },
2485 { 2, 1, 3, 3 },
2486 { 4, 0, 5, 1 },
2487 { 6, 0, 7, 4 },
2488 };
2489
2490 static const struct {
2491 const SkIRect* fRects;
2492 int fCount;
2493 } gRecs[] = {
2494 { r0, SK_ARRAY_COUNT(r0) },
2495 { r1, SK_ARRAY_COUNT(r1) },
2496 { r2, SK_ARRAY_COUNT(r2) },
2497 };
2498
2499 for (i = 0; i < SK_ARRAY_COUNT(gRecs); i++) {
2500 test_rects(gRecs[i].fRects, gRecs[i].fCount);
2501 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002502
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002503 SkRandom rand;
reed@android.comf2b98d62010-12-20 18:26:13 +00002504 for (i = 0; i < 10000; i++) {
2505 SkRegion rgn0, rgn1;
2506
2507 const int N = 8;
2508 SkIRect rect[N];
2509 for (int j = 0; j < N; j++) {
2510 rand_rect(&rect[j], rand);
2511 }
2512 test_rects(rect, N);
2513 }
2514}
2515
caryclark@google.com02939ce2012-06-06 12:09:51 +00002516// FIXME: this should be in a header
2517SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
senorblanco@chromium.org78b82532011-06-28 19:44:03 +00002518SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) {
caryclark@google.com02939ce2012-06-06 12:09:51 +00002519 if (false) { // avoid bit rot, suppress warning
2520 test();
2521 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002522 return new SampleWindow(hwnd, argc, argv, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002523}
2524
caryclark@google.com02939ce2012-06-06 12:09:51 +00002525// FIXME: this should be in a header
2526void get_preferred_size(int* x, int* y, int* width, int* height);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002527void get_preferred_size(int* x, int* y, int* width, int* height) {
2528 *x = 10;
2529 *y = 50;
2530 *width = 640;
2531 *height = 480;
2532}
2533
caryclark@google.com5987f582012-10-02 18:33:14 +00002534#ifdef SK_BUILD_FOR_IOS
2535void save_args(int argc, char *argv[]) {
2536}
2537#endif
2538
caryclark@google.com02939ce2012-06-06 12:09:51 +00002539// FIXME: this should be in a header
2540void application_init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002541void application_init() {
2542// setenv("ANDROID_ROOT", "../../../data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002543#ifdef SK_BUILD_FOR_MAC
reed@android.com8a1c16f2008-12-17 15:59:43 +00002544 setenv("ANDROID_ROOT", "/android/device/data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002545#endif
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002546 SkGraphics::Init();
2547 SkEvent::Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002548}
2549
caryclark@google.com02939ce2012-06-06 12:09:51 +00002550// FIXME: this should be in a header
2551void application_term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002552void application_term() {
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002553 SkEvent::Term();
2554 SkGraphics::Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002555}