skia2/gm/crbug_1113794.cpp
Mike Reed 15a5403cd3 Migrate to using SkPathBuilder
Change-Id: I86a75670d7b919313747175ca3e49ef7472061fd
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/310977
Reviewed-by: Florin Malita <fmalita@chromium.org>
Commit-Queue: Mike Reed <reed@google.com>
2020-08-17 14:17:49 +00:00

31 lines
901 B
C++

/*
* 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) {
SkPath path = SkPath::Line({50.f, 80.f}, {50.f, 20.f});
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));
SkMatrix viewBox = SkMatrix::MakeRectToRect(SkRect::MakeWH(100, 100), SkRect::MakeWH(600, 200), SkMatrix::kFill_ScaleToFit);
canvas->concat(viewBox);
canvas->drawPath(path, paint);
}