blob: 0520776474930bad83f0597a4524d308f6a83b42 [file] [log] [blame]
bsalomonc41f4d62015-08-03 14:23:03 -07001/*
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 Klein33d20552017-03-22 13:47:51 -04009#include "sk_tool_utils.h"
bsalomonc41f4d62015-08-03 14:23:03 -070010#if SK_SUPPORT_GPU
joshualitt04194f32016-01-13 10:08:27 -080011#include "GrContext.h"
Brian Osman11052242016-10-27 14:47:55 -040012#include "GrRenderTargetContextPriv.h"
bsalomonc41f4d62015-08-03 14:23:03 -070013#include "SkRRect.h"
joshualitt04194f32016-01-13 10:08:27 -080014#include "effects/GrRRectEffect.h"
Brian Salomon89527432016-12-16 09:52:16 -050015#include "ops/GrDrawOp.h"
16#include "ops/GrRectOpFactory.h"
bsalomonc41f4d62015-08-03 14:23:03 -070017
18namespace skiagm {
19
20///////////////////////////////////////////////////////////////////////////////
21
22class BigRRectAAEffectGM : public GM {
23public:
bsalomon4a4f14b2015-12-09 10:17:35 -080024 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;
bsalomonc41f4d62015-08-03 14:23:03 -070040 }
41
42protected:
43 SkString onShortName() override {
bsalomon4a4f14b2015-12-09 10:17:35 -080044 SkString name;
45 name.printf("big_rrect_%s_aa_effect", fName);
46 return name;
bsalomonc41f4d62015-08-03 14:23:03 -070047 }
48
bsalomon4a4f14b2015-12-09 10:17:35 -080049 SkISize onISize() override { return SkISize::Make(fWidth, fHeight); }
bsalomonc41f4d62015-08-03 14:23:03 -070050
51 void onDraw(SkCanvas* canvas) override {
Brian Osman11052242016-10-27 14:47:55 -040052 GrRenderTargetContext* renderTargetContext =
53 canvas->internal_private_accessTopLayerRenderTargetContext();
54 if (!renderTargetContext) {
robertphillips175dd9b2016-04-28 14:32:04 -070055 skiagm::GM::DrawGpuOnlyMessage(canvas);
joshualitt04194f32016-01-13 10:08:27 -080056 return;
57 }
58
bsalomonc41f4d62015-08-03 14:23:03 -070059 SkPaint paint;
60
bsalomonc41f4d62015-08-03 14:23:03 -070061 int y = kPad;
62 int x = kPad;
mtkleindbfd7ab2016-09-01 11:24:54 -070063 constexpr GrPrimitiveEdgeType kEdgeTypes[] = {
bsalomonc41f4d62015-08-03 14:23:03 -070064 kFillAA_GrProcessorEdgeType,
65 kInverseFillAA_GrProcessorEdgeType,
66 };
bsalomon4a4f14b2015-12-09 10:17:35 -080067 SkRect testBounds = SkRect::MakeIWH(fTestWidth, fTestHeight);
bsalomonc41f4d62015-08-03 14:23:03 -070068 for (size_t et = 0; et < SK_ARRAY_COUNT(kEdgeTypes); ++et) {
69 GrPrimitiveEdgeType edgeType = kEdgeTypes[et];
bsalomon4a4f14b2015-12-09 10:17:35 -080070 canvas->save();
halcanary9d524f22016-03-29 09:03:52 -070071 canvas->translate(SkIntToScalar(x), SkIntToScalar(y));
bsalomonc41f4d62015-08-03 14:23:03 -070072
bsalomon4a4f14b2015-12-09 10:17:35 -080073 // Draw a background for the test case
74 SkPaint paint;
75 paint.setColor(SK_ColorWHITE);
76 canvas->drawRect(testBounds, paint);
bsalomonc41f4d62015-08-03 14:23:03 -070077
bsalomon4a4f14b2015-12-09 10:17:35 -080078 SkRRect rrect = fRRect;
79 rrect.offset(SkIntToScalar(x + kGap), SkIntToScalar(y + kGap));
bungeman06ca8ec2016-06-09 08:01:03 -070080 sk_sp<GrFragmentProcessor> fp(GrRRectEffect::Make(edgeType, rrect));
bsalomon4a4f14b2015-12-09 10:17:35 -080081 SkASSERT(fp);
82 if (fp) {
Brian Salomon82f44312017-01-11 13:42:54 -050083 GrPaint grPaint;
84 grPaint.setXPFactory(GrPorterDuffXPFactory::Get(SkBlendMode::kSrc));
robertphillips28a838e2016-06-23 14:07:00 -070085 grPaint.addCoverageFragmentProcessor(std::move(fp));
bsalomon4a4f14b2015-12-09 10:17:35 -080086
87 SkRect bounds = testBounds;
88 bounds.offset(SkIntToScalar(x), SkIntToScalar(y));
89
Brian Salomon649a3412017-03-09 13:50:43 -050090 std::unique_ptr<GrMeshDrawOp> op(GrRectOpFactory::MakeNonAAFill(
Brian Salomonf8334782017-01-03 09:42:58 -050091 0xff000000, SkMatrix::I(), bounds, nullptr, nullptr));
Brian Salomon649a3412017-03-09 13:50:43 -050092 renderTargetContext->priv().testingOnly_addMeshDrawOp(
Brian Salomon82f44312017-01-11 13:42:54 -050093 std::move(grPaint), GrAAType::kNone, std::move(op));
bsalomon4a4f14b2015-12-09 10:17:35 -080094 }
95 canvas->restore();
96 x = x + fTestOffsetX;
bsalomonc41f4d62015-08-03 14:23:03 -070097 }
98 }
99
bsalomonc41f4d62015-08-03 14:23:03 -0700100private:
bsalomon4a4f14b2015-12-09 10:17:35 -0800101 // pad between test cases
mtkleindbfd7ab2016-09-01 11:24:54 -0700102 static constexpr int kPad = 7;
bsalomon4a4f14b2015-12-09 10:17:35 -0800103 // gap between rect for each case that is rendered and exterior of rrect
mtkleindbfd7ab2016-09-01 11:24:54 -0700104 static constexpr int kGap = 3;
bsalomonc41f4d62015-08-03 14:23:03 -0700105
bsalomon4a4f14b2015-12-09 10:17:35 -0800106 SkRRect fRRect;
107 int fWidth;
108 int fHeight;
109 int fTestWidth;
110 int fTestHeight;
111 int fTestOffsetX;
112 int fTestOffsetY;
113 const char* fName;
bsalomonc41f4d62015-08-03 14:23:03 -0700114 typedef GM INHERITED;
115};
116
117///////////////////////////////////////////////////////////////////////////////
bsalomon4a4f14b2015-12-09 10:17:35 -0800118// This value is motivated by bug chromium:477684. It has to be large to cause overflow in
119// the shader
mtkleindbfd7ab2016-09-01 11:24:54 -0700120constexpr int kSize = 700;
bsalomonc41f4d62015-08-03 14:23:03 -0700121
bsalomon4a4f14b2015-12-09 10:17:35 -0800122DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRect(SkRect::MakeIWH(kSize, kSize)), "rect"); )
123DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeOval(SkRect::MakeIWH(kSize, kSize)), "circle"); )
124DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeOval(SkRect::MakeIWH(kSize - 1, kSize - 10)), "ellipse"); )
125// The next two have small linear segments between the corners
126DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRectXY(SkRect::MakeIWH(kSize - 1, kSize - 10), kSize/2.f - 10.f, kSize/2.f - 10.f), "circular_corner"); )
127DEF_GM( return new BigRRectAAEffectGM (SkRRect::MakeRectXY(SkRect::MakeIWH(kSize - 1, kSize - 10), kSize/2.f - 10.f, kSize/2.f - 15.f), "elliptical_corner"); )
bsalomonc41f4d62015-08-03 14:23:03 -0700128
129}
130#endif