blob: 11561b29a66f07f66cdc18e2659702e4147e3ba9 [file] [log] [blame]
robertphillips028b98a2015-01-14 09:44:02 -08001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm.h"
9
10namespace skiagm {
11
12// This GM exercises the use case found in crbug.com/423834.
13// The following pattern:
robertphillipse85a32d2015-02-10 08:16:55 -080014// save();
15// clipRect(rect, noAA);
16// drawRect(bigRect, noAA);
17// restore();
18//
19// drawRect(rect, noAA);
robertphillips028b98a2015-01-14 09:44:02 -080020// can leave 1 pixel wide remnants of the first rect.
21class ClipDrawDrawGM : public GM {
22public:
robertphillipse85a32d2015-02-10 08:16:55 -080023 ClipDrawDrawGM() { this->setBGColor(0xFFCCCCCC); }
robertphillips028b98a2015-01-14 09:44:02 -080024
25protected:
mtklein36352bf2015-03-25 18:17:31 -070026 SkString onShortName() override { return SkString("clipdrawdraw"); }
robertphillips028b98a2015-01-14 09:44:02 -080027
mtklein36352bf2015-03-25 18:17:31 -070028 SkISize onISize() override { return SkISize::Make(512, 512); }
robertphillips028b98a2015-01-14 09:44:02 -080029
robertphillipse85a32d2015-02-10 08:16:55 -080030 static void Draw(SkCanvas* canvas, const SkRect& rect) {
robertphillips028b98a2015-01-14 09:44:02 -080031 SkPaint p;
robertphillips028b98a2015-01-14 09:44:02 -080032 p.setAntiAlias(false);
robertphillips028b98a2015-01-14 09:44:02 -080033
robertphillipse85a32d2015-02-10 08:16:55 -080034 const SkRect bigRect = SkRect::MakeWH(600, 600);
robertphillips028b98a2015-01-14 09:44:02 -080035
36 canvas->save();
robertphillipse85a32d2015-02-10 08:16:55 -080037 // draw a black rect through the clip
38 canvas->save();
39 canvas->clipRect(rect);
40 canvas->drawRect(bigRect, p);
41 canvas->restore();
robertphillips028b98a2015-01-14 09:44:02 -080042
robertphillipse85a32d2015-02-10 08:16:55 -080043 // now draw the white rect on top
44 p.setColor(SK_ColorWHITE);
45 canvas->drawRect(rect, p);
robertphillips028b98a2015-01-14 09:44:02 -080046 canvas->restore();
47 }
48
mtklein36352bf2015-03-25 18:17:31 -070049 void onDraw(SkCanvas* canvas) override {
robertphillipse85a32d2015-02-10 08:16:55 -080050 // Vertical remnant
51 const SkRect rect1 = SkRect::MakeLTRB(136.5f, 137.5f, 338.5f, 293.5f);
52
53 // Horizontal remnant
54 // 179.488 rounds the right way (i.e., 179), 179.499 rounds the wrong way (i.e., 180)
55 const SkRect rect2 = SkRect::MakeLTRB(207.5f, 179.499f, 530.5f, 429.5f);
56
57 Draw(canvas, rect1);
58 Draw(canvas, rect2);
robertphillips028b98a2015-01-14 09:44:02 -080059 }
60
61private:
62 typedef GM INHERITED;
63};
64
65//////////////////////////////////////////////////////////////////////////////
66
67DEF_GM(return SkNEW(ClipDrawDrawGM);)
68
69}