blob: f044e70f3d19a02a5248ee7d4c0e6187707de8a2 [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
robertphillips@google.coma22e2112012-08-16 14:58:06 +000045SK_DEFINE_INST_COUNT(SampleWindow::DeviceManager)
46
reed@google.com1830c7a2012-06-04 12:05:43 +000047extern SampleView* CreateSamplePictFileView(const char filename[]);
48
49class PictFileFactory : public SkViewFactory {
50 SkString fFilename;
51public:
52 PictFileFactory(const SkString& filename) : fFilename(filename) {}
53 virtual SkView* operator() () const SK_OVERRIDE {
54 return CreateSamplePictFileView(fFilename.c_str());
55 }
56};
57
edisonn@google.comf8b6b012013-07-11 14:28:04 +000058#ifdef SAMPLE_PDF_FILE_VIEWER
59extern SampleView* CreateSamplePdfFileViewer(const char filename[]);
60
61class PdfFileViewerFactory : public SkViewFactory {
62 SkString fFilename;
63public:
64 PdfFileViewerFactory(const SkString& filename) : fFilename(filename) {}
65 virtual SkView* operator() () const SK_OVERRIDE {
66 return CreateSamplePdfFileViewer(fFilename.c_str());
67 }
68};
69#endif // SAMPLE_PDF_FILE_VIEWER
70
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000071#define PIPE_FILEx
72#ifdef PIPE_FILE
yangsu@google.com1f394212011-06-01 18:03:34 +000073#define FILE_PATH "/path/to/drawing.data"
74#endif
75
yangsu@google.comf121b052011-08-08 16:02:51 +000076#define PIPE_NETx
yangsu@google.comdb03eaa2011-08-08 15:37:23 +000077#ifdef PIPE_NET
78#include "SkSockets.h"
79SkTCPServer gServer;
80#endif
yangsu@google.comef7bdfa2011-08-12 14:27:47 +000081
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +000082#define USE_ARROWS_FOR_ZOOM true
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000083
84#if SK_ANGLE
85//#define DEFAULT_TO_ANGLE 1
86#else
bsalomon@google.com82d12232013-09-09 15:36:26 +000087#define DEFAULT_TO_GPU 0 // if 1 default rendering is on GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +000088#endif
reed@android.comf2b98d62010-12-20 18:26:13 +000089
reed@android.com8a1c16f2008-12-17 15:59:43 +000090#define ANIMATING_EVENTTYPE "nextSample"
reed@google.com84cfce12013-05-29 19:22:20 +000091#define ANIMATING_DELAY 250
reed@android.com8a1c16f2008-12-17 15:59:43 +000092
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000093#ifdef SK_DEBUG
reed@google.combad8c872011-05-18 20:10:31 +000094 #define FPS_REPEAT_MULTIPLIER 1
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000095#else
reed@google.combad8c872011-05-18 20:10:31 +000096 #define FPS_REPEAT_MULTIPLIER 10
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000097#endif
reed@google.combad8c872011-05-18 20:10:31 +000098#define FPS_REPEAT_COUNT (10 * FPS_REPEAT_MULTIPLIER)
mike@reedtribe.org2eb59522011-04-22 01:59:09 +000099
reed@google.com3cec4d72011-07-06 13:59:47 +0000100static SampleWindow* gSampleWindow;
101
reed@google.coma4f81372012-11-15 15:56:38 +0000102static bool gShowGMBounds;
103
reed@google.com2072db82011-11-08 15:18:10 +0000104static void postEventToSink(SkEvent* evt, SkEventSink* sink) {
105 evt->setTargetID(sink->getSinkID())->post();
106}
107
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000108///////////////////////////////////////////////////////////////////////////////
109
110static const char* skip_until(const char* str, const char* skip) {
111 if (!str) {
112 return NULL;
113 }
114 return strstr(str, skip);
115}
116
117static const char* skip_past(const char* str, const char* skip) {
118 const char* found = skip_until(str, skip);
119 if (!found) {
120 return NULL;
121 }
122 return found + strlen(skip);
123}
124
125static const char* gPrefFileName = "sampleapp_prefs.txt";
126
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000127static bool readTitleFromPrefs(SkString* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000128 SkFILEStream stream(gPrefFileName);
129 if (!stream.isValid()) {
130 return false;
131 }
132
133 int len = stream.getLength();
134 SkString data(len);
135 stream.read(data.writable_str(), len);
136 const char* s = data.c_str();
137
138 s = skip_past(s, "curr-slide-title");
139 s = skip_past(s, "=");
140 s = skip_past(s, "\"");
141 const char* stop = skip_until(s, "\"");
142 if (stop > s) {
143 title->set(s, stop - s);
144 return true;
145 }
146 return false;
147}
148
epoger@google.com6fc7cc22011-12-28 15:13:41 +0000149static void writeTitleToPrefs(const char* title) {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000150 SkFILEWStream stream(gPrefFileName);
151 SkString data;
152 data.printf("curr-slide-title = \"%s\"\n", title);
153 stream.write(data.c_str(), data.size());
154}
155
156///////////////////////////////////////////////////////////////////////////////
157
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000158class SampleWindow::DefaultDeviceManager : public SampleWindow::DeviceManager {
159public:
160
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000161 DefaultDeviceManager() {
162#if SK_SUPPORT_GPU
163 fCurContext = NULL;
164 fCurIntf = NULL;
165 fCurRenderTarget = NULL;
166 fMSAASampleCount = 0;
167#endif
168 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000169 }
170
171 virtual ~DefaultDeviceManager() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000172#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000173 SkSafeUnref(fCurContext);
174 SkSafeUnref(fCurIntf);
175 SkSafeUnref(fCurRenderTarget);
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000176#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000177 }
178
bsalomon@google.com11959252012-04-06 20:13:38 +0000179 virtual void setUpBackend(SampleWindow* win, int msaaSampleCount) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000180 SkASSERT(kNone_BackEndType == fBackend);
robertphillips@google.com53e96a12012-03-30 14:47:53 +0000181
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000182 fBackend = kNone_BackEndType;
183
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000184#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000185 switch (win->getDeviceType()) {
186 case kRaster_DeviceType:
187 // fallthrough
188 case kPicture_DeviceType:
189 // fallthrough
190 case kGPU_DeviceType:
191 // fallthrough
192 case kNullGPU_DeviceType:
193 // all these guys use the native backend
194 fBackend = kNativeGL_BackEndType;
195 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000196#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000197 case kANGLE_DeviceType:
198 // ANGLE is really the only odd man out
199 fBackend = kANGLE_BackEndType;
200 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000201#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000202 default:
203 SkASSERT(false);
204 break;
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000205 }
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000206 AttachmentInfo attachmentInfo;
207 bool result = win->attach(fBackend, msaaSampleCount, &attachmentInfo);
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000208 if (!result) {
bsalomon@google.com74913722011-10-27 20:44:19 +0000209 SkDebugf("Failed to initialize GL");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000210 return;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000211 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000212 fMSAASampleCount = msaaSampleCount;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000213
214 SkASSERT(NULL == fCurIntf);
215 switch (win->getDeviceType()) {
216 case kRaster_DeviceType:
217 // fallthrough
218 case kPicture_DeviceType:
219 // fallthrough
220 case kGPU_DeviceType:
221 // all these guys use the native interface
222 fCurIntf = GrGLCreateNativeInterface();
223 break;
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000224#if SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000225 case kANGLE_DeviceType:
226 fCurIntf = GrGLCreateANGLEInterface();
227 break;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000228#endif // SK_ANGLE
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000229 case kNullGPU_DeviceType:
230 fCurIntf = GrGLCreateNullInterface();
231 break;
232 default:
233 SkASSERT(false);
234 break;
bsalomon@google.com6fb736f2011-09-16 18:51:57 +0000235 }
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000236
237 SkASSERT(NULL == fCurContext);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000238 fCurContext = GrContext::Create(kOpenGL_GrBackend, (GrBackendContext) fCurIntf);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000239
240 if (NULL == fCurContext || NULL == fCurIntf) {
241 // We need some context and interface to see results
242 SkSafeUnref(fCurContext);
243 SkSafeUnref(fCurIntf);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000244 SkDebugf("Failed to setup 3D");
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000245
246 win->detach();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000247 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000248#endif // SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000249 // call windowSizeChanged to create the render target
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000250 this->windowSizeChanged(win);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000251 }
252
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000253 virtual void tearDownBackend(SampleWindow *win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000254#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000255 SkSafeUnref(fCurContext);
256 fCurContext = NULL;
257
258 SkSafeUnref(fCurIntf);
259 fCurIntf = NULL;
260
261 SkSafeUnref(fCurRenderTarget);
262 fCurRenderTarget = NULL;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000263#endif
bsalomon@google.comddd40e52012-04-10 15:56:29 +0000264 win->detach();
265 fBackend = kNone_BackEndType;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000266 }
267
reed@google.com5957f472012-10-01 20:31:56 +0000268 virtual SkCanvas* createCanvas(SampleWindow::DeviceType dType,
269 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000270#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +0000271 if (IsGpuDeviceType(dType) && NULL != fCurContext) {
robertphillips@google.com1f2f3382013-08-29 11:54:56 +0000272 SkAutoTUnref<SkBaseDevice> device(new SkGpuDevice(fCurContext, fCurRenderTarget));
bsalomon@google.com82502e22013-01-24 20:47:18 +0000273 return new SkCanvas(device);
274 } else
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000275#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +0000276 {
277 return NULL;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000278 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000279 }
280
281 virtual void publishCanvas(SampleWindow::DeviceType dType,
282 SkCanvas* canvas,
283 SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000284#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000285 if (fCurContext) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000286 // in case we have queued drawing calls
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000287 fCurContext->flush();
288
bsalomon@google.com82502e22013-01-24 20:47:18 +0000289 if (!IsGpuDeviceType(dType)) {
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000290 // need to send the raster bits to the (gpu) window
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000291 fCurContext->setRenderTarget(fCurRenderTarget);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000292 const SkBitmap& bm = win->getBitmap();
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000293 fCurRenderTarget->writePixels(0, 0, bm.width(), bm.height(),
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000294 kSkia8888_GrPixelConfig,
bsalomon@google.com6f379512011-11-16 20:36:03 +0000295 bm.getPixels(),
296 bm.rowBytes());
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000297 }
298 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000299#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000300
301 win->present();
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000302 }
303
304 virtual void windowSizeChanged(SampleWindow* win) {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000305#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000306 if (fCurContext) {
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000307 AttachmentInfo attachmentInfo;
308 win->attach(fBackend, fMSAASampleCount, &attachmentInfo);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000309
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000310 GrBackendRenderTargetDesc desc;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000311 desc.fWidth = SkScalarRound(win->width());
312 desc.fHeight = SkScalarRound(win->height());
bsalomon@google.comfec0bc32013-02-07 14:43:04 +0000313 desc.fConfig = kSkia8888_GrPixelConfig;
senorblanco@chromium.org3cb406b2013-02-05 19:50:46 +0000314 desc.fOrigin = kBottomLeft_GrSurfaceOrigin;
bsalomon@google.com64cc8102013-03-05 20:06:05 +0000315 desc.fSampleCnt = attachmentInfo.fSampleCount;
316 desc.fStencilBits = attachmentInfo.fStencilBits;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000317 GrGLint buffer;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000318 GR_GL_GetIntegerv(fCurIntf, GR_GL_FRAMEBUFFER_BINDING, &buffer);
bsalomon@google.come269f212011-11-07 13:29:52 +0000319 desc.fRenderTargetHandle = buffer;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000320
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000321 SkSafeUnref(fCurRenderTarget);
bsalomon@google.com16e3dde2012-10-25 18:43:28 +0000322 fCurRenderTarget = fCurContext->wrapBackendRenderTarget(desc);
bsalomon@google.com74913722011-10-27 20:44:19 +0000323 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000324#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000325 }
326
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000327 virtual GrContext* getGrContext() {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000328#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000329 return fCurContext;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000330#else
331 return NULL;
332#endif
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000333 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000334
335 virtual GrRenderTarget* getGrRenderTarget() SK_OVERRIDE {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000336#if SK_SUPPORT_GPU
bsalomon@google.com11959252012-04-06 20:13:38 +0000337 return fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000338#else
339 return NULL;
340#endif
bsalomon@google.com11959252012-04-06 20:13:38 +0000341 }
342
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000343private:
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000344
345#if SK_SUPPORT_GPU
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000346 GrContext* fCurContext;
347 const GrGLInterface* fCurIntf;
348 GrRenderTarget* fCurRenderTarget;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000349 int fMSAASampleCount;
350#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000351
352 SkOSWindow::SkBackEndTypes fBackend;
353
354 typedef SampleWindow::DeviceManager INHERITED;
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000355};
356
357///////////////
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000358static const char view_inval_msg[] = "view-inval-msg";
359
Scroggo62b65b02011-06-21 16:01:26 +0000360void SampleWindow::postInvalDelay() {
reed@google.com87fac4a2011-08-04 13:50:17 +0000361 (new SkEvent(view_inval_msg, this->getSinkID()))->postDelay(1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000362}
363
364static bool isInvalEvent(const SkEvent& evt) {
365 return evt.isType(view_inval_msg);
366}
367//////////////////
368
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000369SkFuncViewFactory::SkFuncViewFactory(SkViewCreateFunc func)
370 : fCreateFunc(func) {
371}
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +0000372
bsalomon@google.com8301de12011-10-31 16:47:13 +0000373SkView* SkFuncViewFactory::operator() () const {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000374 return (*fCreateFunc)();
375}
376
377#include "GMSampleView.h"
378
379SkGMSampleViewFactory::SkGMSampleViewFactory(GMFactoryFunc func)
380 : fFunc(func) {
381}
382
383SkView* SkGMSampleViewFactory::operator() () const {
384 return new GMSampleView(fFunc(NULL));
385}
386
387SkViewRegister* SkViewRegister::gHead;
388SkViewRegister::SkViewRegister(SkViewFactory* fact) : fFact(fact) {
389 fFact->ref();
reed@android.com8a1c16f2008-12-17 15:59:43 +0000390 fChain = gHead;
391 gHead = this;
392}
393
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000394SkViewRegister::SkViewRegister(SkViewCreateFunc func) {
395 fFact = new SkFuncViewFactory(func);
396 fChain = gHead;
397 gHead = this;
398}
399
400SkViewRegister::SkViewRegister(GMFactoryFunc func) {
401 fFact = new SkGMSampleViewFactory(func);
402 fChain = gHead;
403 gHead = this;
404}
405
406class AutoUnrefArray {
407public:
408 AutoUnrefArray() {}
409 ~AutoUnrefArray() {
410 int count = fObjs.count();
411 for (int i = 0; i < count; ++i) {
412 fObjs[i]->unref();
413 }
414 }
415 SkRefCnt*& push_back() { return *fObjs.append(); }
chudy@google.com4605a3f2012-08-01 17:58:01 +0000416
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000417private:
418 SkTDArray<SkRefCnt*> fObjs;
419};
420
421// registers GMs as Samples
422// This can't be performed during static initialization because it could be
423// run before GMRegistry has been fully built.
caryclark@google.com02939ce2012-06-06 12:09:51 +0000424static void SkGMRegistyToSampleRegistry() {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000425 static bool gOnce;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000426 static AutoUnrefArray fRegisters;
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000427
428 if (!gOnce) {
429 const skiagm::GMRegistry* gmreg = skiagm::GMRegistry::Head();
430 while (gmreg) {
431 fRegisters.push_back() = new SkViewRegister(gmreg->factory());
432 gmreg = gmreg->next();
433 }
434 gOnce = true;
435 }
436}
437
reed@google.com29038ed2011-07-06 17:56:47 +0000438#if 0
reed@google.comf0b5f682011-03-11 20:08:25 +0000439#include <CoreFoundation/CoreFoundation.h>
440#include <CoreFoundation/CFURLAccess.h>
441
442static void testpdf() {
443 CFStringRef path = CFStringCreateWithCString(NULL, "/test.pdf",
444 kCFStringEncodingUTF8);
445 CFURLRef url = CFURLCreateWithFileSystemPath(NULL, path,
446 kCFURLPOSIXPathStyle,
447 false);
448 CFRelease(path);
449 CGRect box = CGRectMake(0, 0, 8*72, 10*72);
450 CGContextRef cg = CGPDFContextCreateWithURL(url, &box, NULL);
451 CFRelease(url);
452
453 CGContextBeginPage(cg, &box);
454 CGRect r = CGRectMake(10, 10, 40 + 0.5, 50 + 0.5);
455 CGContextFillEllipseInRect(cg, r);
456 CGContextEndPage(cg);
457 CGContextRelease(cg);
458
459 if (false) {
460 SkBitmap bm;
461 bm.setConfig(SkBitmap::kA8_Config, 64, 64);
462 bm.allocPixels();
junov@google.comdbfac8a2012-12-06 21:47:40 +0000463 bm.eraseColor(SK_ColorTRANSPARENT);
reed@google.comf0b5f682011-03-11 20:08:25 +0000464
465 SkCanvas canvas(bm);
466
467 }
468}
469#endif
470
471//////////////////////////////////////////////////////////////////////////////
472
reed@google.com569e0432011-04-05 13:07:03 +0000473enum FlipAxisEnum {
474 kFlipAxis_X = (1 << 0),
475 kFlipAxis_Y = (1 << 1)
476};
477
reed@google.comf0b5f682011-03-11 20:08:25 +0000478#include "SkDrawFilter.h"
479
bungeman@google.com96aabc82013-06-03 21:26:34 +0000480struct HintingState {
481 SkPaint::Hinting hinting;
482 const char* name;
483 const char* label;
484};
485static HintingState gHintingStates[] = {
486 {SkPaint::kNo_Hinting, "Mixed", NULL },
487 {SkPaint::kNo_Hinting, "None", "H0 " },
488 {SkPaint::kSlight_Hinting, "Slight", "Hs " },
489 {SkPaint::kNormal_Hinting, "Normal", "Hn " },
490 {SkPaint::kFull_Hinting, "Full", "Hf " },
491};
492
reed@google.com569e0432011-04-05 13:07:03 +0000493class FlagsDrawFilter : public SkDrawFilter {
reed@google.comf0b5f682011-03-11 20:08:25 +0000494public:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000495 FlagsDrawFilter(SkOSMenu::TriState lcd, SkOSMenu::TriState aa, SkOSMenu::TriState filter,
bungeman@google.com96aabc82013-06-03 21:26:34 +0000496 SkOSMenu::TriState subpixel, int hinting)
497 : fLCDState(lcd), fAAState(aa), fFilterState(filter), fSubpixelState(subpixel)
498 , fHintingState(hinting) {}
reed@google.comf0b5f682011-03-11 20:08:25 +0000499
reed@google.com971aca72012-11-26 20:26:54 +0000500 virtual bool filter(SkPaint* paint, Type t) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000501 if (kText_Type == t && SkOSMenu::kMixedState != fLCDState) {
502 paint->setLCDRenderText(SkOSMenu::kOnState == fLCDState);
reed@google.com569e0432011-04-05 13:07:03 +0000503 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000504 if (SkOSMenu::kMixedState != fAAState) {
505 paint->setAntiAlias(SkOSMenu::kOnState == fAAState);
reed@google.comf0b5f682011-03-11 20:08:25 +0000506 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000507 if (SkOSMenu::kMixedState != fFilterState) {
508 paint->setFilterBitmap(SkOSMenu::kOnState == fFilterState);
reed@google.com176753a2011-05-17 15:32:04 +0000509 }
bungeman@google.com96aabc82013-06-03 21:26:34 +0000510 if (SkOSMenu::kMixedState != fSubpixelState) {
511 paint->setSubpixelText(SkOSMenu::kOnState == fSubpixelState);
512 }
bungeman@google.com055aa522013-06-03 21:35:03 +0000513 if (0 != fHintingState && fHintingState < (int)SK_ARRAY_COUNT(gHintingStates)) {
bungeman@google.com96aabc82013-06-03 21:26:34 +0000514 paint->setHinting(gHintingStates[fHintingState].hinting);
reed@google.com09e3baa2011-05-18 12:04:31 +0000515 }
reed@google.com971aca72012-11-26 20:26:54 +0000516 return true;
reed@google.comf0b5f682011-03-11 20:08:25 +0000517 }
518
519private:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000520 SkOSMenu::TriState fLCDState;
521 SkOSMenu::TriState fAAState;
522 SkOSMenu::TriState fFilterState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000523 SkOSMenu::TriState fSubpixelState;
524 int fHintingState;
reed@google.comf0b5f682011-03-11 20:08:25 +0000525};
526
reed@android.com8a1c16f2008-12-17 15:59:43 +0000527//////////////////////////////////////////////////////////////////////////////
528
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000529#define MAX_ZOOM_LEVEL 8
530#define MIN_ZOOM_LEVEL -8
531
reed@android.comf2b98d62010-12-20 18:26:13 +0000532static const char gCharEvtName[] = "SampleCode_Char_Event";
533static const char gKeyEvtName[] = "SampleCode_Key_Event";
reed@android.com8a1c16f2008-12-17 15:59:43 +0000534static const char gTitleEvtName[] = "SampleCode_Title_Event";
535static const char gPrefSizeEvtName[] = "SampleCode_PrefSize_Event";
reed@android.comf2b98d62010-12-20 18:26:13 +0000536static const char gFastTextEvtName[] = "SampleCode_FastText_Event";
reed@google.com2072db82011-11-08 15:18:10 +0000537static const char gUpdateWindowTitleEvtName[] = "SampleCode_UpdateWindowTitle";
reed@android.comf2b98d62010-12-20 18:26:13 +0000538
539bool SampleCode::CharQ(const SkEvent& evt, SkUnichar* outUni) {
540 if (evt.isType(gCharEvtName, sizeof(gCharEvtName) - 1)) {
541 if (outUni) {
542 *outUni = evt.getFast32();
543 }
544 return true;
545 }
546 return false;
547}
548
549bool SampleCode::KeyQ(const SkEvent& evt, SkKey* outKey) {
550 if (evt.isType(gKeyEvtName, sizeof(gKeyEvtName) - 1)) {
551 if (outKey) {
552 *outKey = (SkKey)evt.getFast32();
553 }
554 return true;
555 }
556 return false;
557}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000558
559bool SampleCode::TitleQ(const SkEvent& evt) {
560 return evt.isType(gTitleEvtName, sizeof(gTitleEvtName) - 1);
561}
562
563void SampleCode::TitleR(SkEvent* evt, const char title[]) {
564 SkASSERT(evt && TitleQ(*evt));
565 evt->setString(gTitleEvtName, title);
566}
567
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000568bool SampleCode::RequestTitle(SkView* view, SkString* title) {
569 SkEvent evt(gTitleEvtName);
570 if (view->doQuery(&evt)) {
571 title->set(evt.findString(gTitleEvtName));
572 return true;
573 }
574 return false;
575}
576
reed@android.com8a1c16f2008-12-17 15:59:43 +0000577bool SampleCode::PrefSizeQ(const SkEvent& evt) {
578 return evt.isType(gPrefSizeEvtName, sizeof(gPrefSizeEvtName) - 1);
579}
580
581void SampleCode::PrefSizeR(SkEvent* evt, SkScalar width, SkScalar height) {
582 SkASSERT(evt && PrefSizeQ(*evt));
583 SkScalar size[2];
584 size[0] = width;
585 size[1] = height;
586 evt->setScalars(gPrefSizeEvtName, 2, size);
587}
588
reed@android.comf2b98d62010-12-20 18:26:13 +0000589bool SampleCode::FastTextQ(const SkEvent& evt) {
590 return evt.isType(gFastTextEvtName, sizeof(gFastTextEvtName) - 1);
591}
592
593///////////////////////////////////////////////////////////////////////////////
594
reed@android.com44177402009-11-23 21:07:51 +0000595static SkMSec gAnimTime;
reed@android.comf2b98d62010-12-20 18:26:13 +0000596static SkMSec gAnimTimePrev;
597
reed@android.com44177402009-11-23 21:07:51 +0000598SkMSec SampleCode::GetAnimTime() { return gAnimTime; }
reed@android.comf2b98d62010-12-20 18:26:13 +0000599SkMSec SampleCode::GetAnimTimeDelta() { return gAnimTime - gAnimTimePrev; }
600SkScalar SampleCode::GetAnimSecondsDelta() {
601 return SkDoubleToScalar(GetAnimTimeDelta() / 1000.0);
602}
reed@android.com44177402009-11-23 21:07:51 +0000603
604SkScalar SampleCode::GetAnimScalar(SkScalar speed, SkScalar period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000605 // since gAnimTime can be up to 32 bits, we can't convert it to a float
606 // or we'll lose the low bits. Hence we use doubles for the intermediate
607 // calculations
608 double seconds = (double)gAnimTime / 1000.0;
609 double value = SkScalarToDouble(speed) * seconds;
reed@android.com44177402009-11-23 21:07:51 +0000610 if (period) {
reed@android.comf2b98d62010-12-20 18:26:13 +0000611 value = ::fmod(value, SkScalarToDouble(period));
reed@android.com44177402009-11-23 21:07:51 +0000612 }
reed@android.comf2b98d62010-12-20 18:26:13 +0000613 return SkDoubleToScalar(value);
reed@android.com44177402009-11-23 21:07:51 +0000614}
615
bsalomon@google.com85003222012-03-28 14:44:37 +0000616SkScalar SampleCode::GetAnimSinScalar(SkScalar amplitude,
617 SkScalar periodInSec,
618 SkScalar phaseInSec) {
619 if (!periodInSec) {
620 return 0;
621 }
622 double t = (double)gAnimTime / 1000.0 + phaseInSec;
623 t *= SkScalarToFloat(2 * SK_ScalarPI) / periodInSec;
624 amplitude = SK_ScalarHalf * amplitude;
625 return SkScalarMul(amplitude, SkDoubleToScalar(sin(t))) + amplitude;
626}
627
reed@google.com3cec4d72011-07-06 13:59:47 +0000628GrContext* SampleCode::GetGr() {
629 return gSampleWindow ? gSampleWindow->getGrContext() : NULL;
630}
631
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000632// some GMs rely on having a skiagm::GetGr function defined
633namespace skiagm {
caryclark@google.com02939ce2012-06-06 12:09:51 +0000634 // FIXME: this should be moved into a header
635 GrContext* GetGr();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000636 GrContext* GetGr() { return SampleCode::GetGr(); }
637}
638
reed@android.com8a1c16f2008-12-17 15:59:43 +0000639//////////////////////////////////////////////////////////////////////////////
640
reed@android.comf2b98d62010-12-20 18:26:13 +0000641static SkView* curr_view(SkWindow* wind) {
642 SkView::F2BIter iter(wind);
643 return iter.next();
644}
645
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +0000646static bool curr_title(SkWindow* wind, SkString* title) {
647 SkView* view = curr_view(wind);
648 if (view) {
649 SkEvent evt(gTitleEvtName);
650 if (view->doQuery(&evt)) {
651 title->set(evt.findString(gTitleEvtName));
652 return true;
653 }
654 }
655 return false;
656}
657
Scroggo2c8208f2011-06-15 16:49:08 +0000658void SampleWindow::setZoomCenter(float x, float y)
659{
660 fZoomCenterX = SkFloatToScalar(x);
661 fZoomCenterY = SkFloatToScalar(y);
662}
reed@android.com8a1c16f2008-12-17 15:59:43 +0000663
Scroggo0f185c22011-03-24 18:35:50 +0000664bool SampleWindow::zoomIn()
665{
666 // Arbitrarily decided
667 if (fFatBitsScale == 25) return false;
668 fFatBitsScale++;
669 this->inval(NULL);
670 return true;
671}
672
673bool SampleWindow::zoomOut()
674{
675 if (fFatBitsScale == 1) return false;
676 fFatBitsScale--;
677 this->inval(NULL);
678 return true;
679}
680
Scroggo0f185c22011-03-24 18:35:50 +0000681void SampleWindow::updatePointer(int x, int y)
682{
683 fMouseX = x;
684 fMouseY = y;
685 if (fShowZoomer) {
686 this->inval(NULL);
687 }
688}
689
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000690static inline SampleWindow::DeviceType cycle_devicetype(SampleWindow::DeviceType ct) {
691 static const SampleWindow::DeviceType gCT[] = {
692 SampleWindow::kPicture_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000693#if SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000694 SampleWindow::kGPU_DeviceType,
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000695#if SK_ANGLE
696 SampleWindow::kANGLE_DeviceType,
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000697#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +0000698 SampleWindow::kRaster_DeviceType, // skip the null gpu device in normal cycling
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000699#endif // SK_SUPPORT_GPU
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000700 SampleWindow::kRaster_DeviceType
reed@android.com8a1c16f2008-12-17 15:59:43 +0000701 };
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +0000702 SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gCT) == SampleWindow::kDeviceTypeCnt, array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000703 return gCT[ct];
704}
705
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000706static void usage(const char * argv0) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000707 SkDebugf("%s [--slide sampleName] [-i resourcePath] [--msaa sampleCount] [--pictureDir dirPath] [--picture path] [--sort]\n", argv0);
708#ifdef SAMPLE_PDF_FILE_VIEWER
709 SkDebugf(" [--pdfDir pdfPath]\n");
710 SkDebugf(" pdfPath: path to directory pdf files are read from\n");
711#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000712 SkDebugf(" sampleName: sample at which to start.\n");
713 SkDebugf(" resourcePath: directory that stores image resources.\n");
bsalomon@google.com11959252012-04-06 20:13:38 +0000714 SkDebugf(" msaa: request multisampling with the given sample count.\n");
chudy@google.com4605a3f2012-08-01 17:58:01 +0000715 SkDebugf(" dirPath: path to directory skia pictures are read from\n");
716 SkDebugf(" path: path to skia picture\n");
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000717 SkDebugf(" --sort: sort samples by title, this would help to compare pdf rendering (P:foo.pdf) with skp rendering (P:foo.pdf)\n");
718}
719
720static SkString getSampleTitle(const SkViewFactory* sampleFactory) {
721 SkView* view = (*sampleFactory)();
722 SkString title;
723 SampleCode::RequestTitle(view, &title);
724 view->unref();
725 return title;
726}
727
edisonn@google.comde36b692013-07-11 15:40:31 +0000728static bool compareSampleTitle(const SkViewFactory* first, const SkViewFactory* second) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000729 return strcmp(getSampleTitle(first).c_str(), getSampleTitle(second).c_str()) < 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000730}
731
chudy@google.com4605a3f2012-08-01 17:58:01 +0000732SampleWindow::SampleWindow(void* hwnd, int argc, char** argv, DeviceManager* devManager)
robertphillips@google.com4750fa52012-04-10 13:34:11 +0000733 : INHERITED(hwnd)
734 , fDevManager(NULL) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000735
reed@google.com7d05ac92013-06-06 13:14:13 +0000736 fCurrIndex = -1;
737
reed@google.com1830c7a2012-06-04 12:05:43 +0000738 this->registerPictFileSamples(argv, argc);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000739 this->registerPictFileSample(argv, argc);
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000740#ifdef SAMPLE_PDF_FILE_VIEWER
741 this->registerPdfFileViewerSamples(argv, argc);
742#endif // SAMPLE_PDF_FILE_VIEWER
robertphillips@google.com76d40212012-03-22 14:12:15 +0000743 SkGMRegistyToSampleRegistry();
744 {
745 const SkViewRegister* reg = SkViewRegister::Head();
746 while (reg) {
747 *fSamples.append() = reg->factory();
748 reg = reg->next();
749 }
750 }
751
edisonn@google.comf8b6b012013-07-11 14:28:04 +0000752 bool sort = false;
753 for (int i = 0; i < argc; ++i) {
754 if (!strcmp(argv[i], "--sort")) {
755 sort = true;
756 break;
757 }
758 }
759
760 if (sort) {
761 // Sort samples, so foo.skp and foo.pdf are consecutive and we can quickly spot where
762 // skp -> pdf -> png fails.
763 SkTQSort(fSamples.begin(), fSamples.end() ? fSamples.end() - 1 : NULL, compareSampleTitle);
764 }
765
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000766 const char* resourcePath = NULL;
bsalomon@google.com11959252012-04-06 20:13:38 +0000767 fMSAASampleCount = 0;
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000768
769 const char* const commandName = argv[0];
770 char* const* stop = argv + argc;
771 for (++argv; argv < stop; ++argv) {
reed@google.com55ebe8e2013-09-10 19:12:07 +0000772 if (!strcmp(*argv, "-i") || !strcmp(*argv, "--resourcePath")) {
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000773 argv++;
774 if (argv < stop && **argv) {
775 resourcePath = *argv;
776 }
robertphillips@google.com76d40212012-03-22 14:12:15 +0000777 } else if (strcmp(*argv, "--slide") == 0) {
778 argv++;
779 if (argv < stop && **argv) {
780 fCurrIndex = findByTitle(*argv);
781 if (fCurrIndex < 0) {
782 fprintf(stderr, "Unknown sample \"%s\"\n", *argv);
robertphillips@google.com7265e722012-05-03 18:22:28 +0000783 listTitles();
robertphillips@google.com76d40212012-03-22 14:12:15 +0000784 }
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000785 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000786 } else if (strcmp(*argv, "--msaa") == 0) {
787 ++argv;
788 if (argv < stop && **argv) {
789 fMSAASampleCount = atoi(*argv);
790 }
robertphillips@google.com7265e722012-05-03 18:22:28 +0000791 } else if (strcmp(*argv, "--list") == 0) {
792 listTitles();
halcanary@google.com805ca192013-10-14 12:47:37 +0000793 } else if (strcmp(*argv, "--pictureDir") == 0) {
794 ++argv; // This case is dealt with in registerPictFileSamples().
795 } else if (strcmp(*argv, "--picture") == 0) {
796 ++argv; // This case is dealt with in registerPictFileSample().
bsalomon@google.com11959252012-04-06 20:13:38 +0000797 }
robertphillips@google.comd3b9fbb2012-03-28 16:19:11 +0000798 else {
robertphillips@google.com76d40212012-03-22 14:12:15 +0000799 usage(commandName);
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000800 }
801 }
802
803 if (fCurrIndex < 0) {
804 SkString title;
805 if (readTitleFromPrefs(&title)) {
806 fCurrIndex = findByTitle(title.c_str());
807 }
808 }
809
810 if (fCurrIndex < 0) {
811 fCurrIndex = 0;
812 }
813
reed@google.com3cec4d72011-07-06 13:59:47 +0000814 gSampleWindow = this;
815
yangsu@google.com1f394212011-06-01 18:03:34 +0000816#ifdef PIPE_FILE
817 //Clear existing file or create file if it doesn't exist
818 FILE* f = fopen(FILE_PATH, "wb");
819 fclose(f);
820#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +0000821
reed@android.com8a1c16f2008-12-17 15:59:43 +0000822 fPicture = NULL;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000823
robertphillips@google.combd8d7ad2012-03-30 15:18:14 +0000824 fDeviceType = kRaster_DeviceType;
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000825
826#if DEFAULT_TO_GPU
827 fDeviceType = kGPU_DeviceType;
reed@android.comf2b98d62010-12-20 18:26:13 +0000828#endif
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000829#if SK_ANGLE && DEFAULT_TO_ANGLE
830 fDeviceType = kANGLE_DeviceType;
831#endif
832
reed@android.com8a1c16f2008-12-17 15:59:43 +0000833 fUseClip = false;
reed@android.come522ca52009-11-23 20:10:41 +0000834 fNClip = false;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000835 fAnimating = false;
reed@android.com6c5f6f22009-08-14 16:08:38 +0000836 fRotate = false;
bungeman@google.comb1785912013-07-09 21:58:56 +0000837 fRotateAnimTime = 0;
bsalomon@google.come8f09102011-09-08 18:48:12 +0000838 fPerspAnim = false;
839 fPerspAnimTime = 0;
reed@android.comf2b98d62010-12-20 18:26:13 +0000840 fRequestGrabImage = false;
scroggo@google.comb073d922012-06-08 15:35:03 +0000841 fPipeState = SkOSMenu::kOffState;
reed@google.com67b89ee2012-08-15 14:41:58 +0000842 fTilingState = SkOSMenu::kOffState;
scroggo@google.com85cade02012-08-17 13:29:50 +0000843 fTileCount.set(1, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +0000844 fMeasureFPS = false;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000845 fLCDState = SkOSMenu::kMixedState;
846 fAAState = SkOSMenu::kMixedState;
847 fFilterState = SkOSMenu::kMixedState;
bungeman@google.com96aabc82013-06-03 21:26:34 +0000848 fSubpixelState = SkOSMenu::kMixedState;
849 fHintingState = 0;
reed@google.com569e0432011-04-05 13:07:03 +0000850 fFlipAxis = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +0000851 fScrollTestX = fScrollTestY = 0;
852
Scroggo0f185c22011-03-24 18:35:50 +0000853 fMouseX = fMouseY = 0;
mike@reedtribe.org3ce59dc2011-04-08 00:38:05 +0000854 fFatBitsScale = 8;
Scroggo0f185c22011-03-24 18:35:50 +0000855 fTypeface = SkTypeface::CreateFromTypeface(NULL, SkTypeface::kBold);
856 fShowZoomer = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000857
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +0000858 fZoomLevel = 0;
859 fZoomScale = SK_Scalar1;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000860
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000861 fMagnify = false;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000862
Scroggo8ac0d542011-06-21 14:44:57 +0000863 fSaveToPdf = false;
864 fPdfCanvas = NULL;
865
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000866 fTransitionNext = 6;
867 fTransitionPrev = 2;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000868
yangsu@google.com921091f2011-08-02 13:39:12 +0000869 int sinkID = this->getSinkID();
scroggo@google.com7dadc742012-04-18 14:07:57 +0000870 fAppMenu = new SkOSMenu;
871 fAppMenu->setTitle("Global Settings");
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000872 int itemID;
chudy@google.com4605a3f2012-08-01 17:58:01 +0000873
874 itemID =fAppMenu->appendList("Device Type", "Device Type", sinkID, 0,
875 "Raster", "Picture", "OpenGL",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +0000876#if SK_ANGLE
877 "ANGLE",
878#endif
879 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000880 fAppMenu->assignKeyEquivalentToItem(itemID, 'd');
881 itemID = fAppMenu->appendTriState("AA", "AA", sinkID, fAAState);
882 fAppMenu->assignKeyEquivalentToItem(itemID, 'b');
883 itemID = fAppMenu->appendTriState("LCD", "LCD", sinkID, fLCDState);
884 fAppMenu->assignKeyEquivalentToItem(itemID, 'l');
885 itemID = fAppMenu->appendTriState("Filter", "Filter", sinkID, fFilterState);
886 fAppMenu->assignKeyEquivalentToItem(itemID, 'n');
bungeman@google.com96aabc82013-06-03 21:26:34 +0000887 itemID = fAppMenu->appendTriState("Subpixel", "Subpixel", sinkID, fSubpixelState);
888 fAppMenu->assignKeyEquivalentToItem(itemID, 's');
889 itemID = fAppMenu->appendList("Hinting", "Hinting", sinkID, fHintingState,
890 gHintingStates[0].name,
891 gHintingStates[1].name,
892 gHintingStates[2].name,
893 gHintingStates[3].name,
bungeman@google.coma9133bb2013-06-04 17:49:20 +0000894 gHintingStates[4].name,
895 NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000896 fAppMenu->assignKeyEquivalentToItem(itemID, 'h');
reed@google.com67b89ee2012-08-15 14:41:58 +0000897
scroggo@google.comb073d922012-06-08 15:35:03 +0000898 fUsePipeMenuItemID = fAppMenu->appendTriState("Pipe", "Pipe" , sinkID,
chudy@google.com4605a3f2012-08-01 17:58:01 +0000899 fPipeState);
scroggo@google.comb073d922012-06-08 15:35:03 +0000900 fAppMenu->assignKeyEquivalentToItem(fUsePipeMenuItemID, 'P');
reed@google.com67b89ee2012-08-15 14:41:58 +0000901
902 itemID = fAppMenu->appendTriState("Tiling", "Tiling", sinkID, fTilingState);
903 fAppMenu->assignKeyEquivalentToItem(itemID, 't');
904
chudy@google.com4605a3f2012-08-01 17:58:01 +0000905 itemID = fAppMenu->appendSwitch("Slide Show", "Slide Show" , sinkID, false);
906 fAppMenu->assignKeyEquivalentToItem(itemID, 'a');
907 itemID = fAppMenu->appendSwitch("Clip", "Clip" , sinkID, fUseClip);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000908 fAppMenu->assignKeyEquivalentToItem(itemID, 'c');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000909 itemID = fAppMenu->appendSwitch("Flip X", "Flip X" , sinkID, false);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000910 fAppMenu->assignKeyEquivalentToItem(itemID, 'x');
911 itemID = fAppMenu->appendSwitch("Flip Y", "Flip Y" , sinkID, false);
912 fAppMenu->assignKeyEquivalentToItem(itemID, 'y');
913 itemID = fAppMenu->appendSwitch("Zoomer", "Zoomer" , sinkID, fShowZoomer);
914 fAppMenu->assignKeyEquivalentToItem(itemID, 'z');
915 itemID = fAppMenu->appendSwitch("Magnify", "Magnify" , sinkID, fMagnify);
916 fAppMenu->assignKeyEquivalentToItem(itemID, 'm');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000917 itemID =fAppMenu->appendList("Transition-Next", "Transition-Next", sinkID,
918 fTransitionNext, "Up", "Up and Right", "Right",
919 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000920 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000921 fAppMenu->assignKeyEquivalentToItem(itemID, 'j');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000922 itemID =fAppMenu->appendList("Transition-Prev", "Transition-Prev", sinkID,
923 fTransitionPrev, "Up", "Up and Right", "Right",
924 "Down and Right", "Down", "Down and Left",
yangsu@google.comdb03eaa2011-08-08 15:37:23 +0000925 "Left", "Up and Left", NULL);
scroggo@google.com7dadc742012-04-18 14:07:57 +0000926 fAppMenu->assignKeyEquivalentToItem(itemID, 'k');
927 itemID = fAppMenu->appendAction("Save to PDF", sinkID);
928 fAppMenu->assignKeyEquivalentToItem(itemID, 'e');
chudy@google.com4605a3f2012-08-01 17:58:01 +0000929
scroggo@google.com7dadc742012-04-18 14:07:57 +0000930 this->addMenu(fAppMenu);
931 fSlideMenu = new SkOSMenu;
932 this->addMenu(fSlideMenu);
chudy@google.com4605a3f2012-08-01 17:58:01 +0000933
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +0000934// this->setConfig(SkBitmap::kRGB_565_Config);
935 this->setConfig(SkBitmap::kARGB_8888_Config);
936 this->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +0000937 this->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000938
robertphillips@google.com8570b5c2012-03-20 17:40:58 +0000939 skiagm::GM::SetResourcePath(resourcePath);
940
bsalomon@google.com48dd1a22011-10-31 14:18:20 +0000941 this->loadView((*fSamples[fCurrIndex])());
chudy@google.com4605a3f2012-08-01 17:58:01 +0000942
bsalomon@google.com840e9f32011-07-06 21:59:09 +0000943 fPDFData = NULL;
reed@google.comf0b5f682011-03-11 20:08:25 +0000944
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000945 if (NULL == devManager) {
946 fDevManager = new DefaultDeviceManager();
947 } else {
948 devManager->ref();
949 fDevManager = devManager;
950 }
bsalomon@google.com11959252012-04-06 20:13:38 +0000951 fDevManager->setUpBackend(this, fMSAASampleCount);
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000952
Scroggob4490c72011-06-17 13:53:05 +0000953 // If another constructor set our dimensions, ensure that our
954 // onSizeChange gets called.
955 if (this->height() && this->width()) {
956 this->onSizeChange();
957 }
reed@google.com2072db82011-11-08 15:18:10 +0000958
959 // can't call this synchronously, since it may require a subclass to
960 // to implement, or the caller may need us to have returned from the
961 // constructor first. Hence we post an event to ourselves.
962// this->updateTitle();
963 postEventToSink(new SkEvent(gUpdateWindowTitleEvtName), this);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000964}
965
966SampleWindow::~SampleWindow() {
967 delete fPicture;
Scroggo8ac0d542011-06-21 14:44:57 +0000968 delete fPdfCanvas;
Scroggo0f185c22011-03-24 18:35:50 +0000969 fTypeface->unref();
reed@google.com29038ed2011-07-06 17:56:47 +0000970
bsalomon@google.com098e96d2011-07-14 14:30:46 +0000971 SkSafeUnref(fDevManager);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000972}
973
reed@google.com1830c7a2012-06-04 12:05:43 +0000974static void make_filepath(SkString* path, const char* dir, const SkString& name) {
975 size_t len = strlen(dir);
976 path->set(dir);
977 if (len > 0 && dir[len - 1] != '/') {
978 path->append("/");
979 }
980 path->append(name);
981}
982
chudy@google.com4605a3f2012-08-01 17:58:01 +0000983void SampleWindow::registerPictFileSample(char** argv, int argc) {
984 const char* pict = NULL;
985
986 for (int i = 0; i < argc; ++i) {
987 if (!strcmp(argv[i], "--picture")) {
988 i += 1;
989 if (i < argc) {
990 pict = argv[i];
991 break;
992 }
993 }
994 }
995 if (pict) {
996 SkString path(pict);
reed@google.com7d05ac92013-06-06 13:14:13 +0000997 fCurrIndex = fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +0000998 *fSamples.append() = new PictFileFactory(path);
999 }
1000}
1001
reed@google.com1830c7a2012-06-04 12:05:43 +00001002void SampleWindow::registerPictFileSamples(char** argv, int argc) {
1003 const char* pictDir = NULL;
1004
1005 for (int i = 0; i < argc; ++i) {
1006 if (!strcmp(argv[i], "--pictureDir")) {
1007 i += 1;
1008 if (i < argc) {
1009 pictDir = argv[i];
1010 break;
1011 }
1012 }
1013 }
1014 if (pictDir) {
1015 SkOSFile::Iter iter(pictDir, "skp");
1016 SkString filename;
1017 while (iter.next(&filename)) {
1018 SkString path;
1019 make_filepath(&path, pictDir, filename);
1020 *fSamples.append() = new PictFileFactory(path);
1021 }
1022 }
1023}
1024
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001025#ifdef SAMPLE_PDF_FILE_VIEWER
1026void SampleWindow::registerPdfFileViewerSamples(char** argv, int argc) {
1027 const char* pdfDir = NULL;
1028
1029 for (int i = 0; i < argc; ++i) {
1030 if (!strcmp(argv[i], "--pdfDir")) {
1031 i += 1;
1032 if (i < argc) {
1033 pdfDir = argv[i];
1034 break;
1035 }
1036 }
1037 }
1038 if (pdfDir) {
1039 SkOSFile::Iter iter(pdfDir, "pdf");
1040 SkString filename;
1041 while (iter.next(&filename)) {
1042 SkString path;
1043 make_filepath(&path, pdfDir, filename);
1044 *fSamples.append() = new PdfFileViewerFactory(path);
1045 }
1046 }
1047}
1048#endif // SAMPLE_PDF_FILE_VIEWER
1049
1050
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001051int SampleWindow::findByTitle(const char title[]) {
1052 int i, count = fSamples.count();
1053 for (i = 0; i < count; i++) {
1054 if (getSampleTitle(i).equals(title)) {
1055 return i;
1056 }
1057 }
mike@reedtribe.orgdd52caa2011-12-28 20:02:10 +00001058 return -1;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001059}
1060
robertphillips@google.com7265e722012-05-03 18:22:28 +00001061void SampleWindow::listTitles() {
1062 int count = fSamples.count();
1063 SkDebugf("All Slides:\n");
1064 for (int i = 0; i < count; i++) {
1065 SkDebugf(" %s\n", getSampleTitle(i).c_str());
1066 }
1067}
1068
reed@android.com55e76b22009-11-23 21:46:47 +00001069static SkBitmap capture_bitmap(SkCanvas* canvas) {
1070 SkBitmap bm;
1071 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
1072 src.copyTo(&bm, src.config());
1073 return bm;
1074}
1075
1076static bool bitmap_diff(SkCanvas* canvas, const SkBitmap& orig,
1077 SkBitmap* diff) {
1078 const SkBitmap& src = canvas->getDevice()->accessBitmap(false);
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001079
reed@android.com55e76b22009-11-23 21:46:47 +00001080 SkAutoLockPixels alp0(src);
1081 SkAutoLockPixels alp1(orig);
1082 for (int y = 0; y < src.height(); y++) {
1083 const void* srcP = src.getAddr(0, y);
1084 const void* origP = orig.getAddr(0, y);
1085 size_t bytes = src.width() * src.bytesPerPixel();
1086 if (memcmp(srcP, origP, bytes)) {
1087 SkDebugf("---------- difference on line %d\n", y);
1088 return true;
1089 }
1090 }
1091 return false;
1092}
1093
Scroggo0f185c22011-03-24 18:35:50 +00001094static void drawText(SkCanvas* canvas, SkString string, SkScalar left, SkScalar top, SkPaint& paint)
1095{
1096 SkColor desiredColor = paint.getColor();
1097 paint.setColor(SK_ColorWHITE);
1098 const char* c_str = string.c_str();
1099 size_t size = string.size();
1100 SkRect bounds;
1101 paint.measureText(c_str, size, &bounds);
1102 bounds.offset(left, top);
1103 SkScalar inset = SkIntToScalar(-2);
1104 bounds.inset(inset, inset);
1105 canvas->drawRect(bounds, paint);
1106 if (desiredColor != SK_ColorBLACK) {
1107 paint.setColor(SK_ColorBLACK);
1108 canvas->drawText(c_str, size, left + SK_Scalar1, top + SK_Scalar1, paint);
1109 }
1110 paint.setColor(desiredColor);
1111 canvas->drawText(c_str, size, left, top, paint);
1112}
1113
reed@android.com44177402009-11-23 21:07:51 +00001114#define XCLIP_N 8
1115#define YCLIP_N 8
reed@android.come522ca52009-11-23 20:10:41 +00001116
1117void SampleWindow::draw(SkCanvas* canvas) {
reed@android.com44177402009-11-23 21:07:51 +00001118 // update the animation time
bsalomon@google.come8f09102011-09-08 18:48:12 +00001119 if (!gAnimTimePrev && !gAnimTime) {
1120 // first time make delta be 0
1121 gAnimTime = SkTime::GetMSecs();
1122 gAnimTimePrev = gAnimTime;
1123 } else {
1124 gAnimTimePrev = gAnimTime;
1125 gAnimTime = SkTime::GetMSecs();
1126 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001127
reed@google.comf03bb562011-11-11 21:42:12 +00001128 if (fGesture.isActive()) {
1129 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00001130 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001131
djsollen@google.com796763e2012-12-10 14:12:55 +00001132 if (fMeasureFPS) {
1133 fMeasureFPS_Time = 0;
1134 }
1135
reed@android.come522ca52009-11-23 20:10:41 +00001136 if (fNClip) {
reed@android.com55e76b22009-11-23 21:46:47 +00001137 this->INHERITED::draw(canvas);
1138 SkBitmap orig = capture_bitmap(canvas);
reed@android.come522ca52009-11-23 20:10:41 +00001139
1140 const SkScalar w = this->width();
1141 const SkScalar h = this->height();
1142 const SkScalar cw = w / XCLIP_N;
1143 const SkScalar ch = h / YCLIP_N;
1144 for (int y = 0; y < YCLIP_N; y++) {
reed@android.com55e76b22009-11-23 21:46:47 +00001145 SkRect r;
1146 r.fTop = y * ch;
1147 r.fBottom = (y + 1) * ch;
1148 if (y == YCLIP_N - 1) {
1149 r.fBottom = h;
1150 }
reed@android.come522ca52009-11-23 20:10:41 +00001151 for (int x = 0; x < XCLIP_N; x++) {
1152 SkAutoCanvasRestore acr(canvas, true);
reed@android.com55e76b22009-11-23 21:46:47 +00001153 r.fLeft = x * cw;
1154 r.fRight = (x + 1) * cw;
1155 if (x == XCLIP_N - 1) {
1156 r.fRight = w;
1157 }
reed@android.come522ca52009-11-23 20:10:41 +00001158 canvas->clipRect(r);
1159 this->INHERITED::draw(canvas);
1160 }
1161 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001162
reed@android.com55e76b22009-11-23 21:46:47 +00001163 SkBitmap diff;
1164 if (bitmap_diff(canvas, orig, &diff)) {
1165 }
reed@android.come522ca52009-11-23 20:10:41 +00001166 } else {
scroggo@google.com85cade02012-08-17 13:29:50 +00001167 const SkScalar cw = SkScalarDiv(this->width(), SkIntToScalar(fTileCount.width()));
1168 const SkScalar ch = SkScalarDiv(this->height(), SkIntToScalar(fTileCount.height()));
rmistry@google.comae933ce2012-08-23 18:19:56 +00001169
scroggo@google.com85cade02012-08-17 13:29:50 +00001170 for (int y = 0; y < fTileCount.height(); ++y) {
1171 for (int x = 0; x < fTileCount.width(); ++x) {
1172 SkAutoCanvasRestore acr(canvas, true);
1173 canvas->clipRect(SkRect::MakeXYWH(x * cw, y * ch, cw, ch));
1174 this->INHERITED::draw(canvas);
1175 }
1176 }
rmistry@google.comae933ce2012-08-23 18:19:56 +00001177
scroggo@google.com85cade02012-08-17 13:29:50 +00001178 if (!fTileCount.equals(1, 1)) {
1179 SkPaint paint;
1180 paint.setColor(0x60FF00FF);
1181 paint.setStyle(SkPaint::kStroke_Style);
1182 for (int y = 0; y < fTileCount.height(); ++y) {
1183 for (int x = 0; x < fTileCount.width(); ++x) {
1184 canvas->drawRect(SkRect::MakeXYWH(x * cw, y * ch, cw, ch), paint);
1185 }
1186 }
1187 }
reed@android.come522ca52009-11-23 20:10:41 +00001188 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001189 if (fShowZoomer && !fSaveToPdf) {
Scroggo3272ba82011-05-25 20:50:42 +00001190 showZoomer(canvas);
1191 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001192 if (fMagnify && !fSaveToPdf) {
1193 magnify(canvas);
1194 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001195
djsollen@google.com796763e2012-12-10 14:12:55 +00001196 if (fMeasureFPS && fMeasureFPS_Time) {
1197 this->updateTitle();
1198 this->postInvalDelay();
1199 }
1200
reed@google.com29038ed2011-07-06 17:56:47 +00001201 // do this last
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001202 fDevManager->publishCanvas(fDeviceType, canvas, this);
Scroggo3272ba82011-05-25 20:50:42 +00001203}
1204
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001205static float clipW = 200;
1206static float clipH = 200;
1207void SampleWindow::magnify(SkCanvas* canvas) {
1208 SkRect r;
1209 int count = canvas->save();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001210
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001211 SkMatrix m = canvas->getTotalMatrix();
robertphillips@google.com07ef9112012-06-04 13:22:14 +00001212 if (!m.invert(&m)) {
1213 return;
1214 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001215 SkPoint offset, center;
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001216 SkScalar mouseX = fMouseX * SK_Scalar1;
1217 SkScalar mouseY = fMouseY * SK_Scalar1;
1218 m.mapXY(mouseX - clipW/2, mouseY - clipH/2, &offset);
1219 m.mapXY(mouseX, mouseY, &center);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001220
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001221 r.set(0, 0, clipW * m.getScaleX(), clipH * m.getScaleX());
1222 r.offset(offset.fX, offset.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001223
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001224 SkPaint paint;
1225 paint.setColor(0xFF66AAEE);
1226 paint.setStyle(SkPaint::kStroke_Style);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001227 paint.setStrokeWidth(10.f * m.getScaleX());
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001228 //lense offset
1229 //canvas->translate(0, -250);
1230 canvas->drawRect(r, paint);
1231 canvas->clipRect(r);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001232
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001233 m = canvas->getTotalMatrix();
1234 m.setTranslate(-center.fX, -center.fY);
bsalomon@google.com820e80a2011-10-24 21:09:40 +00001235 m.postScale(0.5f * fFatBitsScale, 0.5f * fFatBitsScale);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001236 m.postTranslate(center.fX, center.fY);
1237 canvas->concat(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001238
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001239 this->INHERITED::draw(canvas);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001240
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001241 canvas->restoreToCount(count);
1242}
1243
Scroggo3272ba82011-05-25 20:50:42 +00001244void SampleWindow::showZoomer(SkCanvas* canvas) {
Scroggo0f185c22011-03-24 18:35:50 +00001245 int count = canvas->save();
1246 canvas->resetMatrix();
1247 // Ensure the mouse position is on screen.
reed@google.com261b8e22011-04-14 17:53:24 +00001248 int width = SkScalarRound(this->width());
1249 int height = SkScalarRound(this->height());
Scroggo0f185c22011-03-24 18:35:50 +00001250 if (fMouseX >= width) fMouseX = width - 1;
1251 else if (fMouseX < 0) fMouseX = 0;
1252 if (fMouseY >= height) fMouseY = height - 1;
1253 else if (fMouseY < 0) fMouseY = 0;
reed@google.comb36334d2011-05-18 15:07:20 +00001254
Scroggo0f185c22011-03-24 18:35:50 +00001255 SkBitmap bitmap = capture_bitmap(canvas);
reed@google.comb36334d2011-05-18 15:07:20 +00001256 bitmap.lockPixels();
1257
Scroggo0f185c22011-03-24 18:35:50 +00001258 // 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 +00001259 int zoomedWidth = (width >> 1) | 1;
1260 int zoomedHeight = (height >> 1) | 1;
Scroggo0f185c22011-03-24 18:35:50 +00001261 SkIRect src;
1262 src.set(0, 0, zoomedWidth / fFatBitsScale, zoomedHeight / fFatBitsScale);
1263 src.offset(fMouseX - (src.width()>>1), fMouseY - (src.height()>>1));
1264 SkRect dest;
1265 dest.set(0, 0, SkIntToScalar(zoomedWidth), SkIntToScalar(zoomedHeight));
1266 dest.offset(SkIntToScalar(width - zoomedWidth), SkIntToScalar(height - zoomedHeight));
1267 SkPaint paint;
1268 // Clear the background behind our zoomed in view
1269 paint.setColor(SK_ColorWHITE);
1270 canvas->drawRect(dest, paint);
1271 canvas->drawBitmapRect(bitmap, &src, dest);
1272 paint.setColor(SK_ColorBLACK);
1273 paint.setStyle(SkPaint::kStroke_Style);
1274 // Draw a border around the pixel in the middle
1275 SkRect originalPixel;
1276 originalPixel.set(SkIntToScalar(fMouseX), SkIntToScalar(fMouseY), SkIntToScalar(fMouseX + 1), SkIntToScalar(fMouseY + 1));
1277 SkMatrix matrix;
1278 SkRect scalarSrc;
1279 scalarSrc.set(src);
1280 SkColor color = bitmap.getColor(fMouseX, fMouseY);
1281 if (matrix.setRectToRect(scalarSrc, dest, SkMatrix::kFill_ScaleToFit)) {
1282 SkRect pixel;
1283 matrix.mapRect(&pixel, originalPixel);
1284 // TODO Perhaps measure the values and make the outline white if it's "dark"
1285 if (color == SK_ColorBLACK) {
1286 paint.setColor(SK_ColorWHITE);
1287 }
1288 canvas->drawRect(pixel, paint);
1289 }
1290 paint.setColor(SK_ColorBLACK);
1291 // Draw a border around the destination rectangle
1292 canvas->drawRect(dest, paint);
1293 paint.setStyle(SkPaint::kStrokeAndFill_Style);
1294 // Identify the pixel and its color on screen
1295 paint.setTypeface(fTypeface);
1296 paint.setAntiAlias(true);
1297 SkScalar lineHeight = paint.getFontMetrics(NULL);
1298 SkString string;
1299 string.appendf("(%i, %i)", fMouseX, fMouseY);
1300 SkScalar left = dest.fLeft + SkIntToScalar(3);
1301 SkScalar i = SK_Scalar1;
1302 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1303 // Alpha
1304 i += SK_Scalar1;
1305 string.reset();
1306 string.appendf("A: %X", SkColorGetA(color));
1307 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1308 // Red
1309 i += SK_Scalar1;
1310 string.reset();
1311 string.appendf("R: %X", SkColorGetR(color));
1312 paint.setColor(SK_ColorRED);
1313 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1314 // Green
1315 i += SK_Scalar1;
1316 string.reset();
1317 string.appendf("G: %X", SkColorGetG(color));
1318 paint.setColor(SK_ColorGREEN);
1319 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1320 // Blue
1321 i += SK_Scalar1;
1322 string.reset();
1323 string.appendf("B: %X", SkColorGetB(color));
1324 paint.setColor(SK_ColorBLUE);
1325 drawText(canvas, string, left, SkScalarMulAdd(lineHeight, i, dest.fTop), paint);
1326 canvas->restoreToCount(count);
reed@android.come522ca52009-11-23 20:10:41 +00001327}
1328
reed@android.com8a1c16f2008-12-17 15:59:43 +00001329void SampleWindow::onDraw(SkCanvas* canvas) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001330}
1331
1332#include "SkColorPriv.h"
1333
caryclark@google.com02939ce2012-06-06 12:09:51 +00001334#if 0 // UNUSED
reed@android.com8a1c16f2008-12-17 15:59:43 +00001335static void reverseRedAndBlue(const SkBitmap& bm) {
1336 SkASSERT(bm.config() == SkBitmap::kARGB_8888_Config);
1337 uint8_t* p = (uint8_t*)bm.getPixels();
1338 uint8_t* stop = p + bm.getSize();
1339 while (p < stop) {
1340 // swap red/blue (to go from ARGB(int) to RGBA(memory) and premultiply
1341 unsigned scale = SkAlpha255To256(p[3]);
1342 unsigned r = p[2];
1343 unsigned b = p[0];
1344 p[0] = SkAlphaMul(r, scale);
1345 p[1] = SkAlphaMul(p[1], scale);
1346 p[2] = SkAlphaMul(b, scale);
1347 p += 4;
1348 }
1349}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001350#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001351
Scroggo8ac0d542011-06-21 14:44:57 +00001352void SampleWindow::saveToPdf()
1353{
1354 fSaveToPdf = true;
1355 this->inval(NULL);
1356}
1357
reed@android.com8a1c16f2008-12-17 15:59:43 +00001358SkCanvas* SampleWindow::beforeChildren(SkCanvas* canvas) {
Scroggo8ac0d542011-06-21 14:44:57 +00001359 if (fSaveToPdf) {
1360 const SkBitmap& bmp = canvas->getDevice()->accessBitmap(false);
1361 SkISize size = SkISize::Make(bmp.width(), bmp.height());
1362 SkPDFDevice* pdfDevice = new SkPDFDevice(size, size,
1363 canvas->getTotalMatrix());
1364 fPdfCanvas = new SkCanvas(pdfDevice);
1365 pdfDevice->unref();
1366 canvas = fPdfCanvas;
bsalomon@google.com82502e22013-01-24 20:47:18 +00001367 } else if (kPicture_DeviceType == fDeviceType) {
1368 fPicture = new SkPicture;
1369 canvas = fPicture->beginRecording(9999, 9999);
Scroggo8ac0d542011-06-21 14:44:57 +00001370 } else {
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001371#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00001372 if (kNullGPU_DeviceType != fDeviceType)
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001373#endif
bsalomon@google.com82502e22013-01-24 20:47:18 +00001374 {
1375 canvas = this->INHERITED::beforeChildren(canvas);
reed@google.comac10a2d2010-12-22 21:39:39 +00001376 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001377 }
1378
1379 if (fUseClip) {
1380 canvas->drawColor(0xFFFF88FF);
reed@google.com045e62d2011-10-24 12:19:46 +00001381 canvas->clipPath(fClipPath, SkRegion::kIntersect_Op, true);
reed@android.com8a1c16f2008-12-17 15:59:43 +00001382 }
1383
1384 return canvas;
1385}
1386
1387static void paint_rgn(const SkBitmap& bm, const SkIRect& r,
1388 const SkRegion& rgn) {
1389 SkCanvas canvas(bm);
1390 SkRegion inval(rgn);
1391
1392 inval.translate(r.fLeft, r.fTop);
1393 canvas.clipRegion(inval);
1394 canvas.drawColor(0xFFFF8080);
1395}
yangsu@google.com501775e2011-06-24 16:04:50 +00001396#include "SkData.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +00001397void SampleWindow::afterChildren(SkCanvas* orig) {
Scroggo8ac0d542011-06-21 14:44:57 +00001398 if (fSaveToPdf) {
1399 fSaveToPdf = false;
1400 if (fShowZoomer) {
1401 showZoomer(fPdfCanvas);
1402 }
1403 SkString name;
1404 name.printf("%s.pdf", this->getTitle());
1405 SkPDFDocument doc;
1406 SkPDFDevice* device = static_cast<SkPDFDevice*>(fPdfCanvas->getDevice());
1407 doc.appendPage(device);
djsollen@google.com56c69772011-11-08 19:00:26 +00001408#ifdef SK_BUILD_FOR_ANDROID
Scroggo8ac0d542011-06-21 14:44:57 +00001409 name.prepend("/sdcard/");
1410#endif
chudy@google.com4605a3f2012-08-01 17:58:01 +00001411
yangsu@google.com501775e2011-06-24 16:04:50 +00001412#ifdef SK_BUILD_FOR_IOS
1413 SkDynamicMemoryWStream mstream;
1414 doc.emitPDF(&mstream);
yangsu@google.comae8a2e52011-06-24 21:09:39 +00001415 fPDFData = mstream.copyToData();
yangsu@google.com501775e2011-06-24 16:04:50 +00001416#endif
Scroggo8ac0d542011-06-21 14:44:57 +00001417 SkFILEWStream stream(name.c_str());
1418 if (stream.isValid()) {
1419 doc.emitPDF(&stream);
1420 const char* desc = "File saved from Skia SampleApp";
1421 this->onPDFSaved(this->getTitle(), desc, name.c_str());
1422 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001423
Scroggo8ac0d542011-06-21 14:44:57 +00001424 delete fPdfCanvas;
1425 fPdfCanvas = NULL;
1426
1427 // We took over the draw calls in order to create the PDF, so we need
1428 // to redraw.
1429 this->inval(NULL);
1430 return;
1431 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001432
reed@android.comf2b98d62010-12-20 18:26:13 +00001433 if (fRequestGrabImage) {
1434 fRequestGrabImage = false;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001435
robertphillips@google.com1f2f3382013-08-29 11:54:56 +00001436 SkBaseDevice* device = orig->getDevice();
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001437 SkBitmap bmp;
1438 if (device->accessBitmap(false).copyTo(&bmp, SkBitmap::kARGB_8888_Config)) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001439 static int gSampleGrabCounter;
1440 SkString name;
reed@google.com7c57e0e2012-09-08 21:20:33 +00001441 name.printf("sample_grab_%d.png", gSampleGrabCounter++);
bsalomon@google.com669fdc42011-04-05 17:08:27 +00001442 SkImageEncoder::EncodeFile(name.c_str(), bmp,
reed@android.comf2b98d62010-12-20 18:26:13 +00001443 SkImageEncoder::kPNG_Type, 100);
1444 }
1445 }
1446
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001447 if (kPicture_DeviceType == fDeviceType) {
1448 if (true) {
1449 SkPicture* pict = new SkPicture(*fPicture);
1450 fPicture->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001451 this->installDrawFilter(orig);
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001452 orig->drawPicture(*pict);
1453 pict->unref();
1454 } else if (true) {
1455 SkDynamicMemoryWStream ostream;
1456 fPicture->serialize(&ostream);
1457 fPicture->unref();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001458
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001459 SkAutoDataUnref data(ostream.copyToData());
robertphillips@google.com59f46b82012-07-10 17:30:58 +00001460 SkMemoryStream istream(data->data(), data->size());
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001461 SkAutoTUnref<SkPicture> pict(SkPicture::CreateFromStream(&istream));
1462 if (pict.get() != NULL) {
1463 orig->drawPicture(*pict.get());
1464 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00001465 } else {
1466 fPicture->draw(orig);
1467 fPicture->unref();
1468 }
1469 fPicture = NULL;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001470 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001471
reed@google.com17d7aec2011-04-25 14:31:44 +00001472 // Do this after presentGL and other finishing, rather than in afterChild
djsollen@google.com796763e2012-12-10 14:12:55 +00001473 if (fMeasureFPS && fMeasureFPS_StartTime) {
1474 fMeasureFPS_Time += SkTime::GetMSecs() - fMeasureFPS_StartTime;
reed@google.com17d7aec2011-04-25 14:31:44 +00001475 }
1476
1477 // if ((fScrollTestX | fScrollTestY) != 0)
reed@android.comf2b98d62010-12-20 18:26:13 +00001478 if (false) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00001479 const SkBitmap& bm = orig->getDevice()->accessBitmap(true);
1480 int dx = fScrollTestX * 7;
1481 int dy = fScrollTestY * 7;
1482 SkIRect r;
1483 SkRegion inval;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001484
reed@android.com8a1c16f2008-12-17 15:59:43 +00001485 r.set(50, 50, 50+100, 50+100);
1486 bm.scrollRect(&r, dx, dy, &inval);
1487 paint_rgn(bm, r, inval);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001488 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001489}
1490
reed@android.com6c5f6f22009-08-14 16:08:38 +00001491void SampleWindow::beforeChild(SkView* child, SkCanvas* canvas) {
reed@android.com6c5f6f22009-08-14 16:08:38 +00001492 if (fRotate) {
bungeman@google.comb1785912013-07-09 21:58:56 +00001493 fRotateAnimTime += SampleCode::GetAnimSecondsDelta();
1494
reed@android.com6c5f6f22009-08-14 16:08:38 +00001495 SkScalar cx = this->width() / 2;
1496 SkScalar cy = this->height() / 2;
1497 canvas->translate(cx, cy);
bungeman@google.comb1785912013-07-09 21:58:56 +00001498 canvas->rotate(fRotateAnimTime * 10);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001499 canvas->translate(-cx, -cy);
1500 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001501
bsalomon@google.come8f09102011-09-08 18:48:12 +00001502 if (fPerspAnim) {
bsalomon@google.com6fb736f2011-09-16 18:51:57 +00001503 fPerspAnimTime += SampleCode::GetAnimSecondsDelta();
1504
1505 static const SkScalar gAnimPeriod = 10 * SK_Scalar1;
1506 static const SkScalar gAnimMag = SK_Scalar1 / 1000;
1507 SkScalar t = SkScalarMod(fPerspAnimTime, gAnimPeriod);
1508 if (SkScalarFloorToInt(SkScalarDiv(fPerspAnimTime, gAnimPeriod)) & 0x1) {
1509 t = gAnimPeriod - t;
1510 }
1511 t = 2 * t - gAnimPeriod;
1512 t = SkScalarMul(SkScalarDiv(t, gAnimPeriod), gAnimMag);
1513 SkMatrix m;
1514 m.reset();
1515 m.setPerspY(t);
bsalomon@google.come8f09102011-09-08 18:48:12 +00001516 canvas->concat(m);
1517 }
reed@google.comf0b5f682011-03-11 20:08:25 +00001518
reed@google.come23f1942011-12-08 19:36:00 +00001519 this->installDrawFilter(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001520
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001521 if (fMeasureFPS) {
reed@google.comf2183392011-04-22 14:10:48 +00001522 if (SampleView::SetRepeatDraw(child, FPS_REPEAT_COUNT)) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001523 fMeasureFPS_StartTime = SkTime::GetMSecs();
reed@google.comf2183392011-04-22 14:10:48 +00001524 }
1525 } else {
1526 (void)SampleView::SetRepeatDraw(child, 1);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001527 }
bungeman@google.comb1785912013-07-09 21:58:56 +00001528 if (fPerspAnim || fRotate) {
bsalomon@google.come8f09102011-09-08 18:48:12 +00001529 this->inval(NULL);
1530 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00001531}
1532
1533void SampleWindow::afterChild(SkView* child, SkCanvas* canvas) {
reed@google.comf0b5f682011-03-11 20:08:25 +00001534 canvas->setDrawFilter(NULL);
reed@android.com6c5f6f22009-08-14 16:08:38 +00001535}
1536
reed@android.com8a1c16f2008-12-17 15:59:43 +00001537static SkBitmap::Config gConfigCycle[] = {
1538 SkBitmap::kNo_Config, // none -> none
1539 SkBitmap::kNo_Config, // a1 -> none
1540 SkBitmap::kNo_Config, // a8 -> none
1541 SkBitmap::kNo_Config, // index8 -> none
1542 SkBitmap::kARGB_4444_Config, // 565 -> 4444
1543 SkBitmap::kARGB_8888_Config, // 4444 -> 8888
1544 SkBitmap::kRGB_565_Config // 8888 -> 565
1545};
1546
1547static SkBitmap::Config cycle_configs(SkBitmap::Config c) {
1548 return gConfigCycle[c];
1549}
1550
djsollen@google.come32b5832011-06-13 16:58:40 +00001551void SampleWindow::changeZoomLevel(float delta) {
1552 fZoomLevel += SkFloatToScalar(delta);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001553 if (fZoomLevel > 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001554 fZoomLevel = SkMinScalar(fZoomLevel, MAX_ZOOM_LEVEL);
1555 fZoomScale = fZoomLevel + SK_Scalar1;
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001556 } else if (fZoomLevel < 0) {
djsollen@google.come32b5832011-06-13 16:58:40 +00001557 fZoomLevel = SkMaxScalar(fZoomLevel, MIN_ZOOM_LEVEL);
1558 fZoomScale = SK_Scalar1 / (SK_Scalar1 - fZoomLevel);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001559 } else {
1560 fZoomScale = SK_Scalar1;
1561 }
reed@google.comf03bb562011-11-11 21:42:12 +00001562 this->updateMatrix();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001563}
1564
reed@google.comf03bb562011-11-11 21:42:12 +00001565void SampleWindow::updateMatrix(){
1566 SkMatrix m;
1567 m.reset();
1568 if (fZoomLevel) {
1569 SkPoint center;
1570 //m = this->getLocalMatrix();//.invert(&m);
1571 m.mapXY(fZoomCenterX, fZoomCenterY, &center);
1572 SkScalar cx = center.fX;
1573 SkScalar cy = center.fY;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001574
reed@google.comf03bb562011-11-11 21:42:12 +00001575 m.setTranslate(-cx, -cy);
1576 m.postScale(fZoomScale, fZoomScale);
1577 m.postTranslate(cx, cy);
1578 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001579
reed@google.comf03bb562011-11-11 21:42:12 +00001580 if (fFlipAxis) {
1581 m.preTranslate(fZoomCenterX, fZoomCenterY);
1582 if (fFlipAxis & kFlipAxis_X) {
1583 m.preScale(-SK_Scalar1, SK_Scalar1);
1584 }
1585 if (fFlipAxis & kFlipAxis_Y) {
1586 m.preScale(SK_Scalar1, -SK_Scalar1);
1587 }
1588 m.preTranslate(-fZoomCenterX, -fZoomCenterY);
1589 //canvas->concat(m);
1590 }
1591 // Apply any gesture matrix
1592 m.preConcat(fGesture.localM());
1593 m.preConcat(fGesture.globalM());
chudy@google.com4605a3f2012-08-01 17:58:01 +00001594
reed@google.comf03bb562011-11-11 21:42:12 +00001595 this->setLocalMatrix(m);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001596
reed@google.comf03bb562011-11-11 21:42:12 +00001597 this->updateTitle();
1598 this->inval(NULL);
1599}
Scroggo2c8208f2011-06-15 16:49:08 +00001600bool SampleWindow::previousSample() {
Scroggo62b65b02011-06-21 16:01:26 +00001601 fCurrIndex = (fCurrIndex - 1 + fSamples.count()) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001602 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001603 fTransitionPrev));
Scroggo2c8208f2011-06-15 16:49:08 +00001604 return true;
1605}
1606
reed@android.com8a1c16f2008-12-17 15:59:43 +00001607bool SampleWindow::nextSample() {
reed@android.com34245c72009-11-03 04:00:48 +00001608 fCurrIndex = (fCurrIndex + 1) % fSamples.count();
chudy@google.com4605a3f2012-08-01 17:58:01 +00001609 this->loadView(create_transition(curr_view(this), (*fSamples[fCurrIndex])(),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001610 fTransitionNext));
reed@android.com34245c72009-11-03 04:00:48 +00001611 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001612}
1613
yangsu@google.com501775e2011-06-24 16:04:50 +00001614bool SampleWindow::goToSample(int i) {
1615 fCurrIndex = (i) % fSamples.count();
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001616 this->loadView(create_transition(curr_view(this),(*fSamples[fCurrIndex])(), 6));
yangsu@google.com501775e2011-06-24 16:04:50 +00001617 return true;
1618}
1619
1620SkString SampleWindow::getSampleTitle(int i) {
edisonn@google.comf8b6b012013-07-11 14:28:04 +00001621 return ::getSampleTitle(fSamples[i]);
yangsu@google.com501775e2011-06-24 16:04:50 +00001622}
1623
1624int SampleWindow::sampleCount() {
1625 return fSamples.count();
1626}
1627
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001628void SampleWindow::showOverview() {
chudy@google.com4605a3f2012-08-01 17:58:01 +00001629 this->loadView(create_transition(curr_view(this),
1630 create_overview(fSamples.count(), fSamples.begin()),
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001631 4));
1632}
1633
reed@google.come23f1942011-12-08 19:36:00 +00001634void SampleWindow::installDrawFilter(SkCanvas* canvas) {
bungeman@google.com96aabc82013-06-03 21:26:34 +00001635 canvas->setDrawFilter(new FlagsDrawFilter(fLCDState, fAAState, fFilterState, fSubpixelState,
1636 fHintingState))->unref();
reed@google.come23f1942011-12-08 19:36:00 +00001637}
1638
Scroggo2c8208f2011-06-15 16:49:08 +00001639void SampleWindow::postAnimatingEvent() {
1640 if (fAnimating) {
reed@google.com87fac4a2011-08-04 13:50:17 +00001641 (new SkEvent(ANIMATING_EVENTTYPE, this->getSinkID()))->postDelay(ANIMATING_DELAY);
Scroggo2c8208f2011-06-15 16:49:08 +00001642 }
1643}
reed@google.come23f1942011-12-08 19:36:00 +00001644
reed@android.com8a1c16f2008-12-17 15:59:43 +00001645bool SampleWindow::onEvent(const SkEvent& evt) {
reed@google.com2072db82011-11-08 15:18:10 +00001646 if (evt.isType(gUpdateWindowTitleEvtName)) {
1647 this->updateTitle();
1648 return true;
1649 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001650 if (evt.isType(ANIMATING_EVENTTYPE)) {
1651 if (fAnimating) {
1652 this->nextSample();
1653 this->postAnimatingEvent();
1654 }
1655 return true;
1656 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001657 if (evt.isType("replace-transition-view")) {
1658 this->loadView((SkView*)SkEventSink::FindSink(evt.getFast32()));
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001659 return true;
1660 }
reed@android.com34245c72009-11-03 04:00:48 +00001661 if (evt.isType("set-curr-index")) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001662 this->goToSample(evt.getFast32());
reed@android.com34245c72009-11-03 04:00:48 +00001663 return true;
1664 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001665 if (isInvalEvent(evt)) {
1666 this->inval(NULL);
1667 return true;
1668 }
yangsu@google.com921091f2011-08-02 13:39:12 +00001669 int selected = -1;
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001670 if (SkOSMenu::FindListIndex(evt, "Device Type", &selected)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001671 this->setDeviceType((DeviceType)selected);
chudy@google.com4605a3f2012-08-01 17:58:01 +00001672 return true;
yangsu@google.com921091f2011-08-02 13:39:12 +00001673 }
scroggo@google.comb073d922012-06-08 15:35:03 +00001674 if (SkOSMenu::FindTriState(evt, "Pipe", &fPipeState)) {
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001675#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00001676 if (!fPipeState != SkOSMenu::kOnState)
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001677 gServer.disconnectAll();
1678#endif
scroggo@google.comb073d922012-06-08 15:35:03 +00001679 (void)SampleView::SetUsePipe(curr_view(this), fPipeState);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001680 this->updateTitle();
1681 this->inval(NULL);
yangsu@google.com921091f2011-08-02 13:39:12 +00001682 return true;
1683 }
reed@google.com67b89ee2012-08-15 14:41:58 +00001684 if (SkOSMenu::FindTriState(evt, "Tiling", &fTilingState)) {
1685 int nx = 1, ny = 1;
1686 switch (fTilingState) {
1687 case SkOSMenu::kOffState: nx = 1; ny = 1; break;
reed@google.com56b64a52012-08-15 20:44:36 +00001688 case SkOSMenu::kMixedState: nx = 1; ny = 16; break;
1689 case SkOSMenu::kOnState: nx = 4; ny = 4; break;
reed@google.com67b89ee2012-08-15 14:41:58 +00001690 }
scroggo@google.com85cade02012-08-17 13:29:50 +00001691 fTileCount.set(nx, ny);
reed@google.com67b89ee2012-08-15 14:41:58 +00001692 this->inval(NULL);
1693 return true;
1694 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001695 if (SkOSMenu::FindSwitchState(evt, "Slide Show", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001696 this->toggleSlideshow();
1697 return true;
1698 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001699 if (SkOSMenu::FindTriState(evt, "AA", &fAAState) ||
1700 SkOSMenu::FindTriState(evt, "LCD", &fLCDState) ||
1701 SkOSMenu::FindTriState(evt, "Filter", &fFilterState) ||
bungeman@google.com96aabc82013-06-03 21:26:34 +00001702 SkOSMenu::FindTriState(evt, "Subpixel", &fSubpixelState) ||
1703 SkOSMenu::FindListIndex(evt, "Hinting", &fHintingState) ||
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001704 SkOSMenu::FindSwitchState(evt, "Clip", &fUseClip) ||
1705 SkOSMenu::FindSwitchState(evt, "Zoomer", &fShowZoomer) ||
1706 SkOSMenu::FindSwitchState(evt, "Magnify", &fMagnify) ||
1707 SkOSMenu::FindListIndex(evt, "Transition-Next", &fTransitionNext) ||
1708 SkOSMenu::FindListIndex(evt, "Transition-Prev", &fTransitionPrev)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001709 this->inval(NULL);
1710 this->updateTitle();
1711 return true;
1712 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001713 if (SkOSMenu::FindSwitchState(evt, "Flip X", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001714 fFlipAxis ^= kFlipAxis_X;
reed@google.comf03bb562011-11-11 21:42:12 +00001715 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001716 return true;
1717 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001718 if (SkOSMenu::FindSwitchState(evt, "Flip Y", NULL)) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001719 fFlipAxis ^= kFlipAxis_Y;
reed@google.comf03bb562011-11-11 21:42:12 +00001720 this->updateMatrix();
yangsu@google.com921091f2011-08-02 13:39:12 +00001721 return true;
1722 }
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001723 if (SkOSMenu::FindAction(evt,"Save to PDF")) {
yangsu@google.com921091f2011-08-02 13:39:12 +00001724 this->saveToPdf();
1725 return true;
chudy@google.com4605a3f2012-08-01 17:58:01 +00001726 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001727 return this->INHERITED::onEvent(evt);
1728}
1729
reed@android.comf2b98d62010-12-20 18:26:13 +00001730bool SampleWindow::onQuery(SkEvent* query) {
1731 if (query->isType("get-slide-count")) {
1732 query->setFast32(fSamples.count());
1733 return true;
1734 }
1735 if (query->isType("get-slide-title")) {
bsalomon@google.com48dd1a22011-10-31 14:18:20 +00001736 SkView* view = (*fSamples[query->getFast32()])();
reed@android.comf2b98d62010-12-20 18:26:13 +00001737 SkEvent evt(gTitleEvtName);
1738 if (view->doQuery(&evt)) {
1739 query->setString("title", evt.findString(gTitleEvtName));
1740 }
1741 SkSafeUnref(view);
1742 return true;
1743 }
1744 if (query->isType("use-fast-text")) {
1745 SkEvent evt(gFastTextEvtName);
1746 return curr_view(this)->doQuery(&evt);
1747 }
reed@google.com29038ed2011-07-06 17:56:47 +00001748 if (query->isType("ignore-window-bitmap")) {
1749 query->setFast32(this->getGrContext() != NULL);
1750 return true;
1751 }
reed@android.comf2b98d62010-12-20 18:26:13 +00001752 return this->INHERITED::onQuery(query);
1753}
1754
caryclark@google.com02939ce2012-06-06 12:09:51 +00001755#if 0 // UNUSED
reed@android.com0ae6b242008-12-23 16:49:54 +00001756static void cleanup_for_filename(SkString* name) {
1757 char* str = name->writable_str();
reed@android.come191b162009-12-18 21:33:39 +00001758 for (size_t i = 0; i < name->size(); i++) {
reed@android.com0ae6b242008-12-23 16:49:54 +00001759 switch (str[i]) {
1760 case ':': str[i] = '-'; break;
1761 case '/': str[i] = '-'; break;
1762 case ' ': str[i] = '_'; break;
1763 default: break;
1764 }
1765 }
1766}
caryclark@google.com02939ce2012-06-06 12:09:51 +00001767#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00001768
reed@google.coma4f81372012-11-15 15:56:38 +00001769//extern bool gIgnoreFastBlurRect;
1770
reed@android.com8a1c16f2008-12-17 15:59:43 +00001771bool SampleWindow::onHandleChar(SkUnichar uni) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001772 {
1773 SkView* view = curr_view(this);
1774 if (view) {
1775 SkEvent evt(gCharEvtName);
1776 evt.setFast32(uni);
1777 if (view->doQuery(&evt)) {
1778 return true;
1779 }
1780 }
1781 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001782
reed@android.com8a1c16f2008-12-17 15:59:43 +00001783 int dx = 0xFF;
1784 int dy = 0xFF;
1785
1786 switch (uni) {
1787 case '5': dx = 0; dy = 0; break;
1788 case '8': dx = 0; dy = -1; break;
1789 case '6': dx = 1; dy = 0; break;
1790 case '2': dx = 0; dy = 1; break;
1791 case '4': dx = -1; dy = 0; break;
1792 case '7': dx = -1; dy = -1; break;
1793 case '9': dx = 1; dy = -1; break;
1794 case '3': dx = 1; dy = 1; break;
1795 case '1': dx = -1; dy = 1; break;
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001796
reed@android.com8a1c16f2008-12-17 15:59:43 +00001797 default:
1798 break;
1799 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001800
reed@android.com8a1c16f2008-12-17 15:59:43 +00001801 if (0xFF != dx && 0xFF != dy) {
1802 if ((dx | dy) == 0) {
1803 fScrollTestX = fScrollTestY = 0;
1804 } else {
1805 fScrollTestX += dx;
1806 fScrollTestY += dy;
1807 }
1808 this->inval(NULL);
1809 return true;
1810 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00001811
reed@android.com0ae6b242008-12-23 16:49:54 +00001812 switch (uni) {
djsollen@google.com796763e2012-12-10 14:12:55 +00001813 case 'b':
1814 {
1815 postEventToSink(SkNEW_ARGS(SkEvent, ("PictFileView::toggleBBox")), curr_view(this));
1816 this->updateTitle();
1817 this->inval(NULL);
1818 break;
1819 }
reed@google.coma4f81372012-11-15 15:56:38 +00001820 case 'B':
1821// gIgnoreFastBlurRect = !gIgnoreFastBlurRect;
1822 this->inval(NULL);
1823 break;
1824
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001825 case 'f':
chudy@google.com4605a3f2012-08-01 17:58:01 +00001826 // only
djsollen@google.com6ff82552011-11-07 15:43:57 +00001827 toggleFPS();
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00001828 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001829 case 'g':
1830 fRequestGrabImage = true;
1831 this->inval(NULL);
1832 break;
reed@google.coma4f81372012-11-15 15:56:38 +00001833 case 'G':
1834 gShowGMBounds = !gShowGMBounds;
1835 postEventToSink(GMSampleView::NewShowSizeEvt(gShowGMBounds),
1836 curr_view(this));
1837 this->inval(NULL);
1838 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001839 case 'i':
1840 this->zoomIn();
1841 break;
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00001842 case 'o':
1843 this->zoomOut();
1844 break;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001845 case 'r':
1846 fRotate = !fRotate;
bungeman@google.comb1785912013-07-09 21:58:56 +00001847 fRotateAnimTime = 0;
reed@android.com6c5f6f22009-08-14 16:08:38 +00001848 this->inval(NULL);
1849 this->updateTitle();
1850 return true;
bsalomon@google.come8f09102011-09-08 18:48:12 +00001851 case 'k':
1852 fPerspAnim = !fPerspAnim;
1853 this->inval(NULL);
1854 this->updateTitle();
1855 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001856#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00001857 case '\\':
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001858 this->setDeviceType(kNullGPU_DeviceType);
1859 this->inval(NULL);
1860 this->updateTitle();
bsalomon@google.com74913722011-10-27 20:44:19 +00001861 return true;
twiz@google.com05e70242012-01-27 19:12:00 +00001862 case 'p':
1863 {
1864 GrContext* grContext = this->getGrContext();
1865 if (grContext) {
1866 size_t cacheBytes = grContext->getGpuTextureCacheBytes();
1867 grContext->freeGpuResources();
1868 SkDebugf("Purged %d bytes from the GPU resource cache.\n",
1869 cacheBytes);
1870 }
1871 }
1872 return true;
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00001873#endif
reed@android.com0ae6b242008-12-23 16:49:54 +00001874 default:
1875 break;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001876 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00001877
scroggo@google.com7dadc742012-04-18 14:07:57 +00001878 if (fAppMenu->handleKeyEquivalent(uni)|| fSlideMenu->handleKeyEquivalent(uni)) {
1879 this->onUpdateMenu(fAppMenu);
1880 this->onUpdateMenu(fSlideMenu);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001881 return true;
1882 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001883 return this->INHERITED::onHandleChar(uni);
1884}
1885
yangsu@google.com921091f2011-08-02 13:39:12 +00001886void SampleWindow::setDeviceType(DeviceType type) {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001887 if (type == fDeviceType)
1888 return;
1889
1890 fDevManager->tearDownBackend(this);
1891
1892 fDeviceType = type;
1893
bsalomon@google.com11959252012-04-06 20:13:38 +00001894 fDevManager->setUpBackend(this, fMSAASampleCount);
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001895
yangsu@google.com921091f2011-08-02 13:39:12 +00001896 this->updateTitle();
1897 this->inval(NULL);
1898}
1899
Scroggo2c8208f2011-06-15 16:49:08 +00001900void SampleWindow::toggleSlideshow() {
1901 fAnimating = !fAnimating;
1902 this->postAnimatingEvent();
1903 this->updateTitle();
1904}
1905
1906void SampleWindow::toggleRendering() {
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00001907 this->setDeviceType(cycle_devicetype(fDeviceType));
Scroggo2c8208f2011-06-15 16:49:08 +00001908 this->updateTitle();
1909 this->inval(NULL);
1910}
1911
djsollen@google.com6ff82552011-11-07 15:43:57 +00001912void SampleWindow::toggleFPS() {
1913 fMeasureFPS = !fMeasureFPS;
1914 this->updateTitle();
1915 this->inval(NULL);
1916}
1917
reed@android.com8a1c16f2008-12-17 15:59:43 +00001918#include "SkDumpCanvas.h"
1919
1920bool SampleWindow::onHandleKey(SkKey key) {
reed@android.comf2b98d62010-12-20 18:26:13 +00001921 {
1922 SkView* view = curr_view(this);
1923 if (view) {
1924 SkEvent evt(gKeyEvtName);
1925 evt.setFast32(key);
1926 if (view->doQuery(&evt)) {
1927 return true;
1928 }
1929 }
1930 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001931 switch (key) {
1932 case kRight_SkKey:
1933 if (this->nextSample()) {
1934 return true;
1935 }
1936 break;
1937 case kLeft_SkKey:
scroggo@google.come2dd9732012-08-15 20:03:06 +00001938 if (this->previousSample()) {
1939 return true;
1940 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001941 return true;
1942 case kUp_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001943 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00001944 this->changeZoomLevel(1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001945 } else {
1946 fNClip = !fNClip;
1947 this->inval(NULL);
djsollen@google.come32b5832011-06-13 16:58:40 +00001948 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001949 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001950 return true;
1951 case kDown_SkKey:
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001952 if (USE_ARROWS_FOR_ZOOM) {
bungeman@google.comcefd9812013-05-15 15:07:32 +00001953 this->changeZoomLevel(-1.f / 32.f);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001954 } else {
1955 this->setConfig(cycle_configs(this->getBitmap().config()));
djsollen@google.come32b5832011-06-13 16:58:40 +00001956 this->updateTitle();
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001957 }
reed@android.com8a1c16f2008-12-17 15:59:43 +00001958 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001959 case kOK_SkKey: {
1960 SkString title;
1961 if (curr_title(this, &title)) {
1962 writeTitleToPrefs(title.c_str());
reed@android.com8a1c16f2008-12-17 15:59:43 +00001963 }
1964 return true;
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00001965 }
reed@android.com34245c72009-11-03 04:00:48 +00001966 case kBack_SkKey:
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001967 this->showOverview();
reed@android.com34245c72009-11-03 04:00:48 +00001968 return true;
reed@android.com8a1c16f2008-12-17 15:59:43 +00001969 default:
1970 break;
1971 }
1972 return this->INHERITED::onHandleKey(key);
1973}
1974
reed@google.com52f57e12011-03-16 12:10:02 +00001975///////////////////////////////////////////////////////////////////////////////
1976
1977static const char gGestureClickType[] = "GestureClickType";
1978
Scroggod3aed392011-06-22 13:26:56 +00001979bool SampleWindow::onDispatchClick(int x, int y, Click::State state,
reed@google.com4d5c26d2013-01-08 16:17:50 +00001980 void* owner, unsigned modi) {
Scroggo0f185c22011-03-24 18:35:50 +00001981 if (Click::kMoved_State == state) {
1982 updatePointer(x, y);
1983 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00001984 int w = SkScalarRound(this->width());
1985 int h = SkScalarRound(this->height());
1986
1987 // check for the resize-box
1988 if (w - x < 16 && h - y < 16) {
1989 return false; // let the OS handle the click
chudy@google.com4605a3f2012-08-01 17:58:01 +00001990 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00001991 else if (fMagnify) {
1992 //it's only necessary to update the drawing if there's a click
1993 this->inval(NULL);
1994 return false; //prevent dragging while magnify is enabled
reed@google.com4d5c26d2013-01-08 16:17:50 +00001995 } else {
1996 // capture control+option, and trigger debugger
1997 if ((modi & kControl_SkModifierKey) && (modi & kOption_SkModifierKey)) {
1998 if (Click::kDown_State == state) {
1999 SkEvent evt("debug-hit-test");
2000 evt.setS32("debug-hit-test-x", x);
2001 evt.setS32("debug-hit-test-y", y);
2002 curr_view(this)->doEvent(evt);
2003 }
2004 return true;
2005 } else {
2006 return this->INHERITED::onDispatchClick(x, y, state, owner, modi);
2007 }
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002008 }
2009}
2010
reed@google.com52f57e12011-03-16 12:10:02 +00002011class GestureClick : public SkView::Click {
2012public:
2013 GestureClick(SkView* target) : SkView::Click(target) {
2014 this->setType(gGestureClickType);
2015 }
2016
2017 static bool IsGesture(Click* click) {
2018 return click->isType(gGestureClickType);
2019 }
2020};
2021
reed@google.com4d5c26d2013-01-08 16:17:50 +00002022SkView::Click* SampleWindow::onFindClickHandler(SkScalar x, SkScalar y,
2023 unsigned modi) {
reed@google.com52f57e12011-03-16 12:10:02 +00002024 return new GestureClick(this);
2025}
2026
2027bool SampleWindow::onClick(Click* click) {
2028 if (GestureClick::IsGesture(click)) {
bsalomon@google.com4d4f2812011-12-12 18:34:01 +00002029 float x = static_cast<float>(click->fICurr.fX);
2030 float y = static_cast<float>(click->fICurr.fY);
chudy@google.com4605a3f2012-08-01 17:58:01 +00002031
reed@google.com52f57e12011-03-16 12:10:02 +00002032 switch (click->fState) {
2033 case SkView::Click::kDown_State:
Scroggod3aed392011-06-22 13:26:56 +00002034 fGesture.touchBegin(click->fOwner, x, y);
reed@google.com52f57e12011-03-16 12:10:02 +00002035 break;
2036 case SkView::Click::kMoved_State:
Scroggod3aed392011-06-22 13:26:56 +00002037 fGesture.touchMoved(click->fOwner, x, y);
reed@google.comf03bb562011-11-11 21:42:12 +00002038 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002039 break;
2040 case SkView::Click::kUp_State:
Scroggod3aed392011-06-22 13:26:56 +00002041 fGesture.touchEnd(click->fOwner);
reed@google.comf03bb562011-11-11 21:42:12 +00002042 this->updateMatrix();
reed@google.com52f57e12011-03-16 12:10:02 +00002043 break;
2044 }
2045 return true;
2046 }
2047 return false;
2048}
2049
2050///////////////////////////////////////////////////////////////////////////////
2051
reed@android.com8a1c16f2008-12-17 15:59:43 +00002052void SampleWindow::loadView(SkView* view) {
2053 SkView::F2BIter iter(this);
2054 SkView* prev = iter.next();
2055 if (prev) {
2056 prev->detachFromParent();
2057 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002058
reed@android.com8a1c16f2008-12-17 15:59:43 +00002059 view->setVisibleP(true);
reed@android.comf2b98d62010-12-20 18:26:13 +00002060 view->setClipToBounds(false);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002061 this->attachChildToFront(view)->unref();
2062 view->setSize(this->width(), this->height());
2063
yangsu@google.com921091f2011-08-02 13:39:12 +00002064 //repopulate the slide menu when a view is loaded
scroggo@google.com7dadc742012-04-18 14:07:57 +00002065 fSlideMenu->reset();
djsollen@google.com388974f2013-01-17 13:20:01 +00002066
scroggo@google.comb073d922012-06-08 15:35:03 +00002067 (void)SampleView::SetUsePipe(view, fPipeState);
yangsu@google.com921091f2011-08-02 13:39:12 +00002068 if (SampleView::IsSampleView(view))
scroggo@google.com7dadc742012-04-18 14:07:57 +00002069 ((SampleView*)view)->requestMenu(fSlideMenu);
2070 this->onUpdateMenu(fSlideMenu);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002071 this->updateTitle();
2072}
2073
2074static const char* gConfigNames[] = {
2075 "unknown config",
2076 "A1",
2077 "A8",
2078 "Index8",
2079 "565",
2080 "4444",
2081 "8888"
2082};
2083
2084static const char* configToString(SkBitmap::Config c) {
2085 return gConfigNames[c];
2086}
2087
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002088static const char* gDeviceTypePrefix[] = {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002089 "raster: ",
2090 "picture: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002091#if SK_SUPPORT_GPU
bsalomon@google.com74913722011-10-27 20:44:19 +00002092 "opengl: ",
robertphillips@google.comb442a6d2012-04-02 19:24:21 +00002093#if SK_ANGLE
2094 "angle: ",
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002095#endif // SK_ANGLE
bsalomon@google.com74913722011-10-27 20:44:19 +00002096 "null-gl: "
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002097#endif // SK_SUPPORT_GPU
reed@android.com8a1c16f2008-12-17 15:59:43 +00002098};
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002099SK_COMPILE_ASSERT(SK_ARRAY_COUNT(gDeviceTypePrefix) == SampleWindow::kDeviceTypeCnt,
2100 array_size_mismatch);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002101
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002102static const char* trystate_str(SkOSMenu::TriState state,
reed@google.com569e0432011-04-05 13:07:03 +00002103 const char trueStr[], const char falseStr[]) {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002104 if (SkOSMenu::kOnState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002105 return trueStr;
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002106 } else if (SkOSMenu::kOffState == state) {
reed@google.com569e0432011-04-05 13:07:03 +00002107 return falseStr;
2108 }
2109 return NULL;
2110}
2111
reed@android.com8a1c16f2008-12-17 15:59:43 +00002112void SampleWindow::updateTitle() {
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002113 SkView* view = curr_view(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002114
mike@reedtribe.org6f6e8c32011-12-27 22:33:50 +00002115 SkString title;
2116 if (!curr_title(this, &title)) {
reed@android.com8a1c16f2008-12-17 15:59:43 +00002117 title.set("<unknown>");
2118 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002119
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002120 title.prepend(gDeviceTypePrefix[fDeviceType]);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002121
2122 title.prepend(" ");
2123 title.prepend(configToString(this->getBitmap().config()));
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002124
reed@android.com8a1c16f2008-12-17 15:59:43 +00002125 if (fAnimating) {
2126 title.prepend("<A> ");
2127 }
reed@android.com6c5f6f22009-08-14 16:08:38 +00002128 if (fRotate) {
2129 title.prepend("<R> ");
2130 }
reed@android.come522ca52009-11-23 20:10:41 +00002131 if (fNClip) {
2132 title.prepend("<C> ");
2133 }
bsalomon@google.come8f09102011-09-08 18:48:12 +00002134 if (fPerspAnim) {
2135 title.prepend("<K> ");
2136 }
reed@google.com569e0432011-04-05 13:07:03 +00002137
2138 title.prepend(trystate_str(fLCDState, "LCD ", "lcd "));
2139 title.prepend(trystate_str(fAAState, "AA ", "aa "));
bungeman@google.com96aabc82013-06-03 21:26:34 +00002140 title.prepend(trystate_str(fFilterState, "N ", "n "));
2141 title.prepend(trystate_str(fSubpixelState, "S ", "s "));
reed@google.com569e0432011-04-05 13:07:03 +00002142 title.prepend(fFlipAxis & kFlipAxis_X ? "X " : NULL);
2143 title.prepend(fFlipAxis & kFlipAxis_Y ? "Y " : NULL);
bungeman@google.com96aabc82013-06-03 21:26:34 +00002144 title.prepend(gHintingStates[fHintingState].label);
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002145
2146 if (fZoomLevel) {
djsollen@google.come32b5832011-06-13 16:58:40 +00002147 title.prependf("{%.2f} ", SkScalarToFloat(fZoomLevel));
mike@reedtribe.orgdd0cd342011-03-21 00:53:39 +00002148 }
chudy@google.com4605a3f2012-08-01 17:58:01 +00002149
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002150 if (fMeasureFPS) {
reed@google.com43e10142012-09-10 11:52:52 +00002151 title.appendf(" %8.3f ms", fMeasureFPS_Time / (float)FPS_REPEAT_COUNT);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002152 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002153 if (SampleView::IsSampleView(view)) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002154 switch (fPipeState) {
2155 case SkOSMenu::kOnState:
2156 title.prepend("<Pipe> ");
2157 break;
2158 case SkOSMenu::kMixedState:
2159 title.prepend("<Tiled Pipe> ");
2160 break;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002161
scroggo@google.comb073d922012-06-08 15:35:03 +00002162 default:
2163 break;
2164 }
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002165 title.prepend("! ");
2166 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002167
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002168#if SK_SUPPORT_GPU
bsalomon@google.com82502e22013-01-24 20:47:18 +00002169 if (IsGpuDeviceType(fDeviceType) &&
robertphillips@google.com4750fa52012-04-10 13:34:11 +00002170 NULL != fDevManager &&
bsalomon@google.com82502e22013-01-24 20:47:18 +00002171 fDevManager->getGrRenderTarget() &&
bsalomon@google.com11959252012-04-06 20:13:38 +00002172 fDevManager->getGrRenderTarget()->numSamples() > 0) {
2173 title.appendf(" [MSAA: %d]",
2174 fDevManager->getGrRenderTarget()->numSamples());
2175 }
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +00002176#endif
bsalomon@google.com11959252012-04-06 20:13:38 +00002177
reed@android.com8a1c16f2008-12-17 15:59:43 +00002178 this->setTitle(title.c_str());
2179}
2180
2181void SampleWindow::onSizeChange() {
2182 this->INHERITED::onSizeChange();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002183
reed@android.com8a1c16f2008-12-17 15:59:43 +00002184 SkView::F2BIter iter(this);
2185 SkView* view = iter.next();
2186 view->setSize(this->width(), this->height());
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002187
reed@android.com8a1c16f2008-12-17 15:59:43 +00002188 // rebuild our clippath
2189 {
2190 const SkScalar W = this->width();
2191 const SkScalar H = this->height();
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002192
reed@android.com8a1c16f2008-12-17 15:59:43 +00002193 fClipPath.reset();
2194#if 0
2195 for (SkScalar y = SK_Scalar1; y < H; y += SkIntToScalar(32)) {
2196 SkRect r;
2197 r.set(SK_Scalar1, y, SkIntToScalar(30), y + SkIntToScalar(30));
2198 for (; r.fLeft < W; r.offset(SkIntToScalar(32), 0))
2199 fClipPath.addRect(r);
2200 }
2201#else
2202 SkRect r;
2203 r.set(0, 0, W, H);
2204 fClipPath.addRect(r, SkPath::kCCW_Direction);
2205 r.set(W/4, H/4, W*3/4, H*3/4);
2206 fClipPath.addRect(r, SkPath::kCW_Direction);
2207#endif
2208 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002209
Scroggo2c8208f2011-06-15 16:49:08 +00002210 fZoomCenterX = SkScalarHalf(this->width());
2211 fZoomCenterY = SkScalarHalf(this->height());
2212
djsollen@google.com56c69772011-11-08 19:00:26 +00002213#ifdef SK_BUILD_FOR_ANDROID
Scroggob4490c72011-06-17 13:53:05 +00002214 // FIXME: The first draw after a size change does not work on Android, so
2215 // we post an invalidate.
Scroggo62b65b02011-06-21 16:01:26 +00002216 this->postInvalDelay();
Scroggo716a0382011-06-16 14:00:15 +00002217#endif
reed@android.com8a1c16f2008-12-17 15:59:43 +00002218 this->updateTitle(); // to refresh our config
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002219 fDevManager->windowSizeChanged(this);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002220}
2221
2222///////////////////////////////////////////////////////////////////////////////
2223
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002224static const char is_sample_view_tag[] = "sample-is-sample-view";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002225static const char repeat_count_tag[] = "sample-set-repeat-count";
reed@google.com0faac1e2011-05-11 05:58:58 +00002226static const char set_use_pipe_tag[] = "sample-set-use-pipe";
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002227
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002228bool SampleView::IsSampleView(SkView* view) {
2229 SkEvent evt(is_sample_view_tag);
2230 return view->doQuery(&evt);
2231}
2232
reed@google.comf2183392011-04-22 14:10:48 +00002233bool SampleView::SetRepeatDraw(SkView* view, int count) {
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002234 SkEvent evt(repeat_count_tag);
2235 evt.setFast32(count);
reed@google.comf2183392011-04-22 14:10:48 +00002236 return view->doEvent(evt);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002237}
2238
scroggo@google.comb073d922012-06-08 15:35:03 +00002239bool SampleView::SetUsePipe(SkView* view, SkOSMenu::TriState state) {
2240 SkEvent evt;
2241 evt.setS32(set_use_pipe_tag, state);
reed@google.com0faac1e2011-05-11 05:58:58 +00002242 return view->doEvent(evt);
2243}
2244
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002245bool SampleView::onEvent(const SkEvent& evt) {
2246 if (evt.isType(repeat_count_tag)) {
2247 fRepeatCount = evt.getFast32();
2248 return true;
2249 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002250
scroggo@google.comb073d922012-06-08 15:35:03 +00002251 int32_t pipeHolder;
2252 if (evt.findS32(set_use_pipe_tag, &pipeHolder)) {
2253 fPipeState = static_cast<SkOSMenu::TriState>(pipeHolder);
reed@google.com0faac1e2011-05-11 05:58:58 +00002254 return true;
2255 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002256
2257 if (evt.isType("debug-hit-test")) {
2258 fDebugHitTest = true;
2259 evt.findS32("debug-hit-test-x", &fDebugHitTestLoc.fX);
2260 evt.findS32("debug-hit-test-y", &fDebugHitTestLoc.fY);
2261 this->inval(NULL);
2262 return true;
2263 }
2264
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002265 return this->INHERITED::onEvent(evt);
2266}
2267
2268bool SampleView::onQuery(SkEvent* evt) {
reed@google.coma6ff4dc2011-05-12 22:08:24 +00002269 if (evt->isType(is_sample_view_tag)) {
2270 return true;
2271 }
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002272 return this->INHERITED::onQuery(evt);
2273}
2274
reed@google.com64e3eb22011-05-04 14:32:04 +00002275
2276class SimplePC : public SkGPipeController {
2277public:
2278 SimplePC(SkCanvas* target);
2279 ~SimplePC();
chudy@google.com4605a3f2012-08-01 17:58:01 +00002280
reed@google.com64e3eb22011-05-04 14:32:04 +00002281 virtual void* requestBlock(size_t minRequest, size_t* actual);
2282 virtual void notifyWritten(size_t bytes);
2283
2284private:
reed@google.com961ddb02011-05-05 14:03:48 +00002285 SkGPipeReader fReader;
2286 void* fBlock;
2287 size_t fBlockSize;
2288 size_t fBytesWritten;
2289 int fAtomsWritten;
reed@google.com64e3eb22011-05-04 14:32:04 +00002290 SkGPipeReader::Status fStatus;
2291
2292 size_t fTotalWritten;
2293};
2294
2295SimplePC::SimplePC(SkCanvas* target) : fReader(target) {
2296 fBlock = NULL;
2297 fBlockSize = fBytesWritten = 0;
2298 fStatus = SkGPipeReader::kDone_Status;
2299 fTotalWritten = 0;
reed@google.com961ddb02011-05-05 14:03:48 +00002300 fAtomsWritten = 0;
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002301 fReader.setBitmapDecoder(&SkImageDecoder::DecodeMemory);
reed@google.com64e3eb22011-05-04 14:32:04 +00002302}
2303
2304SimplePC::~SimplePC() {
2305// SkASSERT(SkGPipeReader::kDone_Status == fStatus);
reed@google.com0faac1e2011-05-11 05:58:58 +00002306 if (fTotalWritten) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002307 SkDebugf("--- %d bytes %d atoms, status %d\n", fTotalWritten,
2308 fAtomsWritten, fStatus);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002309#ifdef PIPE_FILE
scroggo@google.comb073d922012-06-08 15:35:03 +00002310 //File is open in append mode
2311 FILE* f = fopen(FILE_PATH, "ab");
2312 SkASSERT(f != NULL);
2313 fwrite((const char*)fBlock + fBytesWritten, 1, bytes, f);
2314 fclose(f);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002315#endif
2316#ifdef PIPE_NET
scroggo@google.comb073d922012-06-08 15:35:03 +00002317 if (fAtomsWritten > 1 && fTotalWritten > 4) { //ignore done
2318 gServer.acceptConnections();
2319 gServer.writePacket(fBlock, fTotalWritten);
2320 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002321#endif
reed@google.com0faac1e2011-05-11 05:58:58 +00002322 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002323 sk_free(fBlock);
reed@google.com64e3eb22011-05-04 14:32:04 +00002324}
2325
2326void* SimplePC::requestBlock(size_t minRequest, size_t* actual) {
2327 sk_free(fBlock);
2328
2329 fBlockSize = minRequest * 4;
2330 fBlock = sk_malloc_throw(fBlockSize);
2331 fBytesWritten = 0;
2332 *actual = fBlockSize;
2333 return fBlock;
2334}
2335
2336void SimplePC::notifyWritten(size_t bytes) {
2337 SkASSERT(fBytesWritten + bytes <= fBlockSize);
reed@google.com64e3eb22011-05-04 14:32:04 +00002338 fStatus = fReader.playback((const char*)fBlock + fBytesWritten, bytes);
2339 SkASSERT(SkGPipeReader::kError_Status != fStatus);
2340 fBytesWritten += bytes;
2341 fTotalWritten += bytes;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002342
reed@google.com961ddb02011-05-05 14:03:48 +00002343 fAtomsWritten += 1;
reed@google.com64e3eb22011-05-04 14:32:04 +00002344}
2345
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002346void SampleView::draw(SkCanvas* canvas) {
scroggo@google.comb073d922012-06-08 15:35:03 +00002347 if (SkOSMenu::kOffState == fPipeState) {
2348 this->INHERITED::draw(canvas);
2349 } else {
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002350 SkGPipeWriter writer;
2351 SimplePC controller(canvas);
scroggo@google.comb073d922012-06-08 15:35:03 +00002352 TiledPipeController tc(canvas->getDevice()->accessBitmap(false),
scroggo@google.com74b7ffd2013-04-30 02:32:41 +00002353 &SkImageDecoder::DecodeMemory,
scroggo@google.comb073d922012-06-08 15:35:03 +00002354 &canvas->getTotalMatrix());
2355 SkGPipeController* pc;
2356 if (SkOSMenu::kMixedState == fPipeState) {
2357 pc = &tc;
2358 } else {
2359 pc = &controller;
2360 }
reed@google.comdde09562011-05-23 12:21:05 +00002361 uint32_t flags = SkGPipeWriter::kCrossProcess_Flag;
chudy@google.com4605a3f2012-08-01 17:58:01 +00002362
scroggo@google.comb073d922012-06-08 15:35:03 +00002363 canvas = writer.startRecording(pc, flags);
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002364 //Must draw before controller goes out of scope and sends data
2365 this->INHERITED::draw(canvas);
yangsu@google.comef7bdfa2011-08-12 14:27:47 +00002366 //explicitly end recording to ensure writer is flushed before the memory
2367 //is freed in the deconstructor of the controller
2368 writer.endRecording();
reed@google.com0faac1e2011-05-11 05:58:58 +00002369 }
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002370}
reed@google.com4d5c26d2013-01-08 16:17:50 +00002371
2372#include "SkBounder.h"
2373
2374class DebugHitTestBounder : public SkBounder {
2375public:
2376 DebugHitTestBounder(int x, int y) {
2377 fLoc.set(x, y);
2378 }
2379
2380 virtual bool onIRect(const SkIRect& bounds) SK_OVERRIDE {
2381 if (bounds.contains(fLoc.x(), fLoc.y())) {
2382 //
2383 // Set a break-point here to see what was being drawn under
2384 // the click point (just needed a line of code to stop the debugger)
2385 //
2386 bounds.centerX();
2387 }
2388 return true;
2389 }
2390
2391private:
2392 SkIPoint fLoc;
2393 typedef SkBounder INHERITED;
2394};
2395
yangsu@google.comdb03eaa2011-08-08 15:37:23 +00002396void SampleView::onDraw(SkCanvas* canvas) {
reed@google.com81e3d7f2011-06-01 12:42:36 +00002397 this->onDrawBackground(canvas);
2398
reed@google.com4d5c26d2013-01-08 16:17:50 +00002399 DebugHitTestBounder bounder(fDebugHitTestLoc.x(), fDebugHitTestLoc.y());
2400 if (fDebugHitTest) {
2401 canvas->setBounder(&bounder);
2402 }
2403
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002404 for (int i = 0; i < fRepeatCount; i++) {
scroggo@google.com85cade02012-08-17 13:29:50 +00002405 SkAutoCanvasRestore acr(canvas, true);
2406 this->onDrawContent(canvas);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002407 }
reed@google.com4d5c26d2013-01-08 16:17:50 +00002408
2409 fDebugHitTest = false;
2410 canvas->setBounder(NULL);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002411}
2412
2413void SampleView::onDrawBackground(SkCanvas* canvas) {
reed@google.comf2183392011-04-22 14:10:48 +00002414 canvas->drawColor(fBGColor);
mike@reedtribe.org2eb59522011-04-22 01:59:09 +00002415}
2416
2417///////////////////////////////////////////////////////////////////////////////
2418
reed@android.comf2b98d62010-12-20 18:26:13 +00002419template <typename T> void SkTBSort(T array[], int count) {
2420 for (int i = 1; i < count - 1; i++) {
2421 bool didSwap = false;
2422 for (int j = count - 1; j > i; --j) {
2423 if (array[j] < array[j-1]) {
2424 T tmp(array[j-1]);
2425 array[j-1] = array[j];
2426 array[j] = tmp;
2427 didSwap = true;
2428 }
2429 }
2430 if (!didSwap) {
2431 break;
2432 }
2433 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002434
reed@android.comf2b98d62010-12-20 18:26:13 +00002435 for (int k = 0; k < count - 1; k++) {
2436 SkASSERT(!(array[k+1] < array[k]));
2437 }
2438}
2439
2440#include "SkRandom.h"
2441
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002442static void rand_rect(SkIRect* rect, SkRandom& rand) {
reed@android.comf2b98d62010-12-20 18:26:13 +00002443 int bits = 8;
2444 int shift = 32 - bits;
2445 rect->set(rand.nextU() >> shift, rand.nextU() >> shift,
2446 rand.nextU() >> shift, rand.nextU() >> shift);
2447 rect->sort();
2448}
2449
2450static void dumpRect(const SkIRect& r) {
2451 SkDebugf(" { %d, %d, %d, %d },\n",
2452 r.fLeft, r.fTop,
2453 r.fRight, r.fBottom);
2454}
2455
2456static void test_rects(const SkIRect rect[], int count) {
2457 SkRegion rgn0, rgn1;
2458
2459 for (int i = 0; i < count; i++) {
2460 rgn0.op(rect[i], SkRegion::kUnion_Op);
2461 // dumpRect(rect[i]);
2462 }
2463 rgn1.setRects(rect, count);
2464
2465 if (rgn0 != rgn1) {
2466 SkDebugf("\n");
2467 for (int i = 0; i < count; i++) {
2468 dumpRect(rect[i]);
2469 }
2470 SkDebugf("\n");
2471 }
2472}
2473
2474static void test() {
2475 size_t i;
2476
2477 const SkIRect r0[] = {
2478 { 0, 0, 1, 1 },
2479 { 2, 2, 3, 3 },
2480 };
2481 const SkIRect r1[] = {
2482 { 0, 0, 1, 3 },
2483 { 1, 1, 2, 2 },
2484 { 2, 0, 3, 3 },
2485 };
2486 const SkIRect r2[] = {
2487 { 0, 0, 1, 2 },
2488 { 2, 1, 3, 3 },
2489 { 4, 0, 5, 1 },
2490 { 6, 0, 7, 4 },
2491 };
2492
2493 static const struct {
2494 const SkIRect* fRects;
2495 int fCount;
2496 } gRecs[] = {
2497 { r0, SK_ARRAY_COUNT(r0) },
2498 { r1, SK_ARRAY_COUNT(r1) },
2499 { r2, SK_ARRAY_COUNT(r2) },
2500 };
2501
2502 for (i = 0; i < SK_ARRAY_COUNT(gRecs); i++) {
2503 test_rects(gRecs[i].fRects, gRecs[i].fCount);
2504 }
bsalomon@google.com2e7b43d2011-01-18 20:57:22 +00002505
commit-bot@chromium.orge0e7cfe2013-09-09 20:09:12 +00002506 SkRandom rand;
reed@android.comf2b98d62010-12-20 18:26:13 +00002507 for (i = 0; i < 10000; i++) {
2508 SkRegion rgn0, rgn1;
2509
2510 const int N = 8;
2511 SkIRect rect[N];
2512 for (int j = 0; j < N; j++) {
2513 rand_rect(&rect[j], rand);
2514 }
2515 test_rects(rect, N);
2516 }
2517}
2518
caryclark@google.com02939ce2012-06-06 12:09:51 +00002519// FIXME: this should be in a header
2520SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv);
senorblanco@chromium.org78b82532011-06-28 19:44:03 +00002521SkOSWindow* create_sk_window(void* hwnd, int argc, char** argv) {
caryclark@google.com02939ce2012-06-06 12:09:51 +00002522 if (false) { // avoid bit rot, suppress warning
2523 test();
2524 }
bsalomon@google.com098e96d2011-07-14 14:30:46 +00002525 return new SampleWindow(hwnd, argc, argv, NULL);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002526}
2527
caryclark@google.com02939ce2012-06-06 12:09:51 +00002528// FIXME: this should be in a header
2529void get_preferred_size(int* x, int* y, int* width, int* height);
reed@android.com8a1c16f2008-12-17 15:59:43 +00002530void get_preferred_size(int* x, int* y, int* width, int* height) {
2531 *x = 10;
2532 *y = 50;
2533 *width = 640;
2534 *height = 480;
2535}
2536
caryclark@google.com5987f582012-10-02 18:33:14 +00002537#ifdef SK_BUILD_FOR_IOS
2538void save_args(int argc, char *argv[]) {
2539}
2540#endif
2541
caryclark@google.com02939ce2012-06-06 12:09:51 +00002542// FIXME: this should be in a header
2543void application_init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002544void application_init() {
2545// setenv("ANDROID_ROOT", "../../../data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002546#ifdef SK_BUILD_FOR_MAC
reed@android.com8a1c16f2008-12-17 15:59:43 +00002547 setenv("ANDROID_ROOT", "/android/device/data", 0);
reed@android.come191b162009-12-18 21:33:39 +00002548#endif
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002549 SkGraphics::Init();
2550 SkEvent::Init();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002551}
2552
caryclark@google.com02939ce2012-06-06 12:09:51 +00002553// FIXME: this should be in a header
2554void application_term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002555void application_term() {
bsalomon@google.com2fbc7fa2011-01-05 16:34:41 +00002556 SkEvent::Term();
2557 SkGraphics::Term();
reed@android.com8a1c16f2008-12-17 15:59:43 +00002558}