bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 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" |
Mike Klein | 33d2055 | 2017-03-22 13:47:51 -0400 | [diff] [blame] | 9 | #include "sk_tool_utils.h" |
Ethan Nicholas | eace935 | 2018-10-15 20:09:54 +0000 | [diff] [blame] | 10 | #include "GrCaps.h" |
joshualitt | 04194f3 | 2016-01-13 10:08:27 -0800 | [diff] [blame] | 11 | #include "GrContext.h" |
Brian Osman | 1105224 | 2016-10-27 14:47:55 -0400 | [diff] [blame] | 12 | #include "GrRenderTargetContextPriv.h" |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 13 | #include "SkRRect.h" |
joshualitt | 04194f3 | 2016-01-13 10:08:27 -0800 | [diff] [blame] | 14 | #include "effects/GrRRectEffect.h" |
Brian Salomon | 8952743 | 2016-12-16 09:52:16 -0500 | [diff] [blame] | 15 | #include "ops/GrDrawOp.h" |
Michael Ludwig | 72ab346 | 2018-12-10 12:43:36 -0500 | [diff] [blame] | 16 | #include "ops/GrFillRectOp.h" |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 17 | |
| 18 | namespace skiagm { |
| 19 | |
| 20 | /////////////////////////////////////////////////////////////////////////////// |
| 21 | |
Chris Dalton | 3a77837 | 2019-02-07 15:23:36 -0700 | [diff] [blame] | 22 | class BigRRectAAEffectGM : public GpuGM { |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 23 | public: |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 24 | BigRRectAAEffectGM(const SkRRect& rrect, const char* name) |
| 25 | : fRRect(rrect) |
| 26 | , fName(name) { |
| 27 | this->setBGColor(sk_tool_utils::color_to_565(SK_ColorBLUE)); |
| 28 | // Each test case draws the rrect with gaps around it. |
| 29 | fTestWidth = SkScalarCeilToInt(rrect.width()) + 2 * kGap; |
| 30 | fTestHeight = SkScalarCeilToInt(rrect.height()) + 2 * kGap; |
| 31 | |
| 32 | // Add a pad between test cases. |
| 33 | fTestOffsetX = fTestWidth + kPad; |
| 34 | fTestOffsetY = fTestHeight + kPad; |
| 35 | |
| 36 | // We draw two tests in x (fill and inv-fill) and pad around |
| 37 | // all four sides of the image. |
| 38 | fWidth = 2 * fTestOffsetX + kPad; |
| 39 | fHeight = fTestOffsetY + kPad; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 40 | } |
| 41 | |
| 42 | protected: |
| 43 | SkString onShortName() override { |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 44 | SkString name; |
| 45 | name.printf("big_rrect_%s_aa_effect", fName); |
| 46 | return name; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 47 | } |
| 48 | |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 49 | SkISize onISize() override { return SkISize::Make(fWidth, fHeight); } |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 50 | |
Chris Dalton | 3a77837 | 2019-02-07 15:23:36 -0700 | [diff] [blame] | 51 | void onDraw(GrContext* context, GrRenderTargetContext* renderTargetContext, |
| 52 | SkCanvas* canvas) override { |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 53 | SkPaint paint; |
| 54 | |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 55 | int y = kPad; |
| 56 | int x = kPad; |
Ethan Nicholas | 0f3c732 | 2017-11-09 14:51:17 -0500 | [diff] [blame] | 57 | constexpr GrClipEdgeType kEdgeTypes[] = { |
Ethan Nicholas | 1706f84 | 2017-11-10 11:58:19 -0500 | [diff] [blame] | 58 | GrClipEdgeType::kFillAA, |
| 59 | GrClipEdgeType::kInverseFillAA, |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 60 | }; |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 61 | SkRect testBounds = SkRect::MakeIWH(fTestWidth, fTestHeight); |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 62 | for (size_t et = 0; et < SK_ARRAY_COUNT(kEdgeTypes); ++et) { |
Ethan Nicholas | 0f3c732 | 2017-11-09 14:51:17 -0500 | [diff] [blame] | 63 | GrClipEdgeType edgeType = kEdgeTypes[et]; |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 64 | canvas->save(); |
halcanary | 9d524f2 | 2016-03-29 09:03:52 -0700 | [diff] [blame] | 65 | canvas->translate(SkIntToScalar(x), SkIntToScalar(y)); |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 66 | |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 67 | // Draw a background for the test case |
| 68 | SkPaint paint; |
| 69 | paint.setColor(SK_ColorWHITE); |
| 70 | canvas->drawRect(testBounds, paint); |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 71 | |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 72 | SkRRect rrect = fRRect; |
| 73 | rrect.offset(SkIntToScalar(x + kGap), SkIntToScalar(y + kGap)); |
Ethan Nicholas | eace935 | 2018-10-15 20:09:54 +0000 | [diff] [blame] | 74 | const auto& caps = *renderTargetContext->caps()->shaderCaps(); |
| 75 | auto fp = GrRRectEffect::Make(edgeType, rrect, caps); |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 76 | SkASSERT(fp); |
| 77 | if (fp) { |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 78 | GrPaint grPaint; |
Brian Osman | cb3d087 | 2018-10-16 15:19:28 -0400 | [diff] [blame] | 79 | grPaint.setColor4f({ 0, 0, 0, 1.f }); |
Brian Salomon | 82f4431 | 2017-01-11 13:42:54 -0500 | [diff] [blame] | 80 | grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc)); |
robertphillips | 28a838e | 2016-06-23 14:07:00 -0700 | [diff] [blame] | 81 | grPaint.addCoverageFragmentProcessor(std::move(fp)); |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 82 | |
| 83 | SkRect bounds = testBounds; |
| 84 | bounds.offset(SkIntToScalar(x), SkIntToScalar(y)); |
| 85 | |
Brian Salomon | ac70f84 | 2017-05-08 10:43:33 -0400 | [diff] [blame] | 86 | renderTargetContext->priv().testingOnly_addDrawOp( |
Michael Ludwig | 72ab346 | 2018-12-10 12:43:36 -0500 | [diff] [blame] | 87 | GrFillRectOp::Make(context, std::move(grPaint), GrAAType::kNone, |
| 88 | SkMatrix::I(), bounds)); |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 89 | } |
| 90 | canvas->restore(); |
| 91 | x = x + fTestOffsetX; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 92 | } |
| 93 | } |
| 94 | |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 95 | private: |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 96 | // pad between test cases |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 97 | static constexpr int kPad = 7; |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 98 | // gap between rect for each case that is rendered and exterior of rrect |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 99 | static constexpr int kGap = 3; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 100 | |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 101 | SkRRect fRRect; |
| 102 | int fWidth; |
| 103 | int fHeight; |
| 104 | int fTestWidth; |
| 105 | int fTestHeight; |
| 106 | int fTestOffsetX; |
| 107 | int fTestOffsetY; |
| 108 | const char* fName; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 109 | typedef GM INHERITED; |
| 110 | }; |
| 111 | |
| 112 | /////////////////////////////////////////////////////////////////////////////// |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 113 | // This value is motivated by bug chromium:477684. It has to be large to cause overflow in |
| 114 | // the shader |
mtklein | dbfd7ab | 2016-09-01 11:24:54 -0700 | [diff] [blame] | 115 | constexpr int kSize = 700; |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 116 | |
bsalomon | 4a4f14b | 2015-12-09 10:17:35 -0800 | [diff] [blame] | 117 | DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRect(SkRect::MakeIWH(kSize, kSize)), "rect"); ) |
| 118 | DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeOval(SkRect::MakeIWH(kSize, kSize)), "circle"); ) |
| 119 | DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeOval(SkRect::MakeIWH(kSize - 1, kSize - 10)), "ellipse"); ) |
| 120 | // The next two have small linear segments between the corners |
| 121 | DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRectXY(SkRect::MakeIWH(kSize - 1, kSize - 10), kSize/2.f - 10.f, kSize/2.f - 10.f), "circular_corner"); ) |
| 122 | DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRectXY(SkRect::MakeIWH(kSize - 1, kSize - 10), kSize/2.f - 10.f, kSize/2.f - 15.f), "elliptical_corner"); ) |
bsalomon | c41f4d6 | 2015-08-03 14:23:03 -0700 | [diff] [blame] | 123 | |
| 124 | } |