80ea19ca4b
Reason for revert: android patched, blink has rolled Original issue's description: > Revert of stop calling SkScalarDiv (patchset #4 id:60001 of https://codereview.chromium.org/1135053002/) > > Reason for revert: > need to wait for Blink roll (and patch android) > > Original issue's description: > > stop calling SkScalarDiv > > > > BUG=skia: > > TBR= > > > > Committed: https://skia.googlesource.com/skia/+/67d71c898249a7af3523b16c6a69895a63bfae0a > > TBR= > NOPRESUBMIT=true > NOTREECHECKS=true > NOTRY=true > BUG=skia: > > Committed: https://skia.googlesource.com/skia/+/2629697933b5cc975e45d2a45c48f803fc6cbcec TBR= NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=skia: Review URL: https://codereview.chromium.org/1135693003
68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
/*
|
|
* Copyright 2013 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "gm.h"
|
|
#include "SkCanvas.h"
|
|
#include "SkPath.h"
|
|
|
|
// Reproduces https://code.google.com/p/chromium/issues/detail?id=279014
|
|
|
|
static const int kWidth = 640;
|
|
static const int kHeight = 480;
|
|
static const SkScalar kAngle = 0.305f;
|
|
|
|
// Renders a string art shape.
|
|
// The particular shape rendered can be controlled by adjusting kAngle, from 0 to 1
|
|
|
|
class StringArtGM : public skiagm::GM {
|
|
public:
|
|
StringArtGM() {}
|
|
|
|
protected:
|
|
|
|
SkString onShortName() override {
|
|
return SkString("stringart");
|
|
}
|
|
|
|
SkISize onISize() override {
|
|
return SkISize::Make(kWidth, kHeight);
|
|
}
|
|
|
|
void onDraw(SkCanvas* canvas) override {
|
|
SkScalar angle = kAngle*SK_ScalarPI + SkScalarHalf(SK_ScalarPI);
|
|
SkScalar size = SkIntToScalar(SkMin32(kWidth, kHeight));
|
|
SkPoint center = SkPoint::Make(SkScalarHalf(kWidth), SkScalarHalf(kHeight));
|
|
SkScalar length = 5;
|
|
SkScalar step = angle;
|
|
|
|
SkPath path;
|
|
path.moveTo(center);
|
|
|
|
while (length < (SkScalarHalf(size) - 10.f))
|
|
{
|
|
SkPoint rp = SkPoint::Make(length*SkScalarCos(step) + center.fX,
|
|
length*SkScalarSin(step) + center.fY);
|
|
path.lineTo(rp);
|
|
length += angle / SkScalarHalf(SK_ScalarPI);
|
|
step += angle;
|
|
}
|
|
path.close();
|
|
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
paint.setColor(0xFF007700);
|
|
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
|
|
private:
|
|
typedef GM INHERITED;
|
|
};
|
|
|
|
DEF_GM( return new StringArtGM; )
|