blob: 32e637ba665f20383339c3e18f34b9b1de7cb635 [file] [log] [blame]
bsalomon@google.com1a38d552012-03-15 14:40:46 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8#include "gm.h"
9
10#include "SkColorPriv.h"
11#include "SkShader.h"
12
13namespace skiagm {
14
15class BigMatrixGM : public GM {
16public:
17 BigMatrixGM() {
18 this->setBGColor(0xFF66AA99);
19 }
20
21protected:
22 virtual SkString onShortName() {
23 return SkString("bigmatrix");
24 }
25
26 virtual SkISize onISize() {
tfarinaf5393182014-06-09 23:59:03 -070027 return SkISize::Make(50, 50);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000028 }
29
30 virtual void onDraw(SkCanvas* canvas) {
31 SkMatrix m;
32 m.reset();
33 m.setRotate(33 * SK_Scalar1);
34 m.postScale(3000 * SK_Scalar1, 3000 * SK_Scalar1);
35 m.postTranslate(6000 * SK_Scalar1, -5000 * SK_Scalar1);
36 canvas->concat(m);
37
38 SkPaint paint;
39 paint.setColor(SK_ColorRED);
40 paint.setAntiAlias(true);
41
reed@google.com57b19352012-04-19 19:25:49 +000042 bool success = m.invert(&m);
caryclark@google.com13130862012-06-06 12:10:45 +000043 SkASSERT(success);
humper@google.com0e515772013-01-07 19:54:40 +000044 (void) success; // silence compiler :(
bsalomon@google.com1a38d552012-03-15 14:40:46 +000045
46 SkPath path;
47
48 SkPoint pt = {10 * SK_Scalar1, 10 * SK_Scalar1};
49 SkScalar small = 1 / (500 * SK_Scalar1);
50
51 m.mapPoints(&pt, 1);
52 path.addCircle(pt.fX, pt.fY, small);
53 canvas->drawPath(path, paint);
54
55 pt.set(30 * SK_Scalar1, 10 * SK_Scalar1);
56 m.mapPoints(&pt, 1);
57 SkRect rect = {pt.fX - small, pt.fY - small,
58 pt.fX + small, pt.fY + small};
59 canvas->drawRect(rect, paint);
60
61 SkBitmap bmp;
reed@google.comeb9a46c2014-01-25 16:46:20 +000062 bmp.allocN32Pixels(2, 2);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000063 uint32_t* pixels = reinterpret_cast<uint32_t*>(bmp.getPixels());
64 pixels[0] = SkPackARGB32(0xFF, 0xFF, 0x00, 0x00);
65 pixels[1] = SkPackARGB32(0xFF, 0x00, 0xFF, 0x00);
66 pixels[2] = SkPackARGB32(0x80, 0x00, 0x00, 0x00);
67 pixels[3] = SkPackARGB32(0xFF, 0x00, 0x00, 0xFF);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000068 pt.set(30 * SK_Scalar1, 30 * SK_Scalar1);
69 m.mapPoints(&pt, 1);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000070 SkMatrix s;
71 s.reset();
72 s.setScale(SK_Scalar1 / 1000, SK_Scalar1 / 1000);
commit-bot@chromium.org9c9005a2014-04-28 14:55:39 +000073 SkShader* shader = SkShader::CreateBitmapShader(
74 bmp,
75 SkShader::kRepeat_TileMode,
76 SkShader::kRepeat_TileMode,
77 &s);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000078 paint.setShader(shader)->unref();
79 paint.setAntiAlias(false);
reed93a12152015-03-16 10:08:34 -070080 paint.setFilterQuality(kLow_SkFilterQuality);
bsalomon@google.com1a38d552012-03-15 14:40:46 +000081 rect.setLTRB(pt.fX - small, pt.fY - small,
82 pt.fX + small, pt.fY + small);
83 canvas->drawRect(rect, paint);
84 }
85
86private:
87 typedef GM INHERITED;
88};
89
90//////////////////////////////////////////////////////////////////////////////
91
92static GM* MyFactory(void*) { return new BigMatrixGM; }
93static GMRegistry reg(MyFactory);
94
95}