2020-08-11 21:26:09 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2020 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm/gm.h"
|
|
|
|
#include "include/core/SkCanvas.h"
|
|
|
|
#include "include/core/SkPaint.h"
|
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "include/effects/SkDashPathEffect.h"
|
|
|
|
|
|
|
|
DEF_SIMPLE_GM(crbug_1113794, canvas, 600, 200) {
|
2020-08-16 15:15:41 +00:00
|
|
|
SkPath path = SkPath::Line({50.f, 80.f}, {50.f, 20.f});
|
2020-08-11 21:26:09 +00:00
|
|
|
|
|
|
|
SkPaint paint;
|
|
|
|
paint.setColor(SK_ColorBLACK);
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setStrokeWidth(0.25f);
|
|
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
|
|
|
|
|
|
static constexpr SkScalar kDash[2] = {10.f, 10.f};
|
|
|
|
paint.setPathEffect(SkDashPathEffect::Make(kDash, 2, 0.f));
|
|
|
|
|
2021-01-15 17:26:22 +00:00
|
|
|
SkMatrix viewBox = SkMatrix::RectToRect(SkRect::MakeWH(100, 100), SkRect::MakeWH(600, 200));
|
2020-08-11 21:26:09 +00:00
|
|
|
canvas->concat(viewBox);
|
|
|
|
|
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
}
|