7571f9e490
Mechanically updated via Xcode "Replace Regular Expression": typedef (.*) INHERITED; --> using INHERITED = $1; The ClangTidy approach generated an even larger CL which would have required a significant amount of hand-tweaking to be usable. Change-Id: I671dc9d9efdf6d60151325c8d4d13fad7e10a15b Reviewed-on: https://skia-review.googlesource.com/c/skia/+/314999 Commit-Queue: Mike Klein <mtklein@google.com> Reviewed-by: Mike Klein <mtklein@google.com> Auto-Submit: John Stiles <johnstiles@google.com>
41 lines
1.2 KiB
C++
41 lines
1.2 KiB
C++
/*
|
|
* Copyright 2011 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/effects/SkGradientShader.h"
|
|
#include "samplecode/Sample.h"
|
|
|
|
|
|
class TwoPtConicalView : public Sample {
|
|
public:
|
|
TwoPtConicalView() {}
|
|
|
|
protected:
|
|
SkString name() override { return SkString("2PtConical"); }
|
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
|
canvas->translate(SkIntToScalar(10), SkIntToScalar(20));
|
|
|
|
SkColor colors[] = { SK_ColorRED, SK_ColorBLUE };
|
|
SkPoint c0 = { 0, 0 };
|
|
SkScalar r0 = 100;
|
|
SkPoint c1 = { 100, 100 };
|
|
SkScalar r1 = 100;
|
|
SkPaint paint;
|
|
paint.setShader(SkGradientShader::MakeTwoPointConical(c0, r0, c1, r1, colors,
|
|
nullptr, 2,
|
|
SkTileMode::kClamp));
|
|
canvas->drawPaint(paint);
|
|
}
|
|
|
|
private:
|
|
using INHERITED = Sample;
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
DEF_SAMPLE( return new TwoPtConicalView(); )
|