2011-07-28 14:26:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "samplecode/Sample.h"
|
2011-05-25 20:13:50 +00:00
|
|
|
|
2018-08-08 15:36:17 +00:00
|
|
|
class StrokeRectSample : public Sample {
|
2011-05-25 20:13:50 +00:00
|
|
|
public:
|
|
|
|
StrokeRectSample() {}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-25 20:13:50 +00:00
|
|
|
protected:
|
2020-07-21 21:03:56 +00:00
|
|
|
SkString name() override { return SkString("Stroke Rects"); }
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2020-07-21 21:03:56 +00:00
|
|
|
void onDrawContent(SkCanvas* canvas) override {
|
2011-05-25 20:13:50 +00:00
|
|
|
SkPaint paint;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
paint.setStrokeWidth(SkIntToScalar(20));
|
|
|
|
|
|
|
|
SkPaint hair;
|
|
|
|
hair.setStyle(SkPaint::kStroke_Style);
|
|
|
|
hair.setColor(SK_ColorRED);
|
|
|
|
|
|
|
|
static const SkISize gSize[] = {
|
|
|
|
{ 100, 50 },
|
|
|
|
{ 100, 0 },
|
|
|
|
{ 0, 50 },
|
|
|
|
{ 0, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
static const SkPaint::Join gJoin[] = {
|
|
|
|
SkPaint::kMiter_Join,
|
|
|
|
SkPaint::kRound_Join,
|
|
|
|
SkPaint::kBevel_Join
|
|
|
|
};
|
|
|
|
|
|
|
|
canvas->translate(paint.getStrokeWidth(), paint.getStrokeWidth());
|
|
|
|
for (size_t i = 0; i < SK_ARRAY_COUNT(gJoin); ++i) {
|
|
|
|
paint.setStrokeJoin(gJoin[i]);
|
|
|
|
|
|
|
|
canvas->save();
|
|
|
|
for (size_t j = 0; j < SK_ARRAY_COUNT(gSize); ++j) {
|
|
|
|
SkRect r = SkRect::MakeWH(SkIntToScalar(gSize[j].fWidth),
|
|
|
|
SkIntToScalar(gSize[j].fHeight));
|
|
|
|
canvas->drawRect(r, paint);
|
|
|
|
canvas->drawRect(r, hair);
|
|
|
|
canvas->translate(0, SkIntToScalar(100));
|
|
|
|
}
|
|
|
|
canvas->restore();
|
|
|
|
canvas->translate(SkIntToScalar(150), 0);
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 18:19:56 +00:00
|
|
|
|
2011-05-25 20:13:50 +00:00
|
|
|
private:
|
2020-09-03 02:42:33 +00:00
|
|
|
using INHERITED = Sample;
|
2011-05-25 20:13:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2018-08-08 15:36:17 +00:00
|
|
|
DEF_SAMPLE( return new StrokeRectSample(); )
|