skia2/gm/pathmeasure.cpp
Ben Wagner 7fde8e1728 IWYU for gms.
This almost gets gms to be iwyu clean. The last bit is around gm.cpp
and the tracing framework and its use of atomic. Will also need a way
of keeping things from regressing, which is difficult due to needing to
do this outside-in.

Change-Id: I1393531e99da8b0f1a29f55c53c86d53f459af7d
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/211593
Reviewed-by: Herb Derby <herb@google.com>
Commit-Queue: Ben Wagner <bungeman@google.com>
2019-05-02 17:48:53 +00:00

63 lines
1.7 KiB
C++

/*
* Copyright 2018 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/core/SkPaint.h"
#include "include/core/SkPath.h"
#include "include/core/SkPathEffect.h"
#include "include/core/SkTypes.h"
#include "include/effects/SkDashPathEffect.h"
// Repro case for skia:7674. Requires lots of RAM to run, and currently triggers UB:
// ../include/private/SkTDArray.h:382:26:
// runtime error: signed integer overflow: 2147483644 + 4 cannot be represented in type 'int'
static SK_UNUSED void path_measure_explosion(SkCanvas* canvas) {
SkPaint p;
p.setAntiAlias(false);
float intervals[] = { 0, 10e9f };
p.setStyle(SkPaint::kStroke_Style);
p.setPathEffect(SkDashPathEffect::Make(intervals, SK_ARRAY_COUNT(intervals), 0));
int quadratic_at[] = {
13, 68, 258, 1053, 1323, 2608, 10018, 15668, 59838, 557493, 696873, 871098, 4153813,
15845608, 48357008, 118059138, 288230353, 360287948, 562949933, 703687423, 1099511613, 0
};
int next_quadratic_at = 0;
SkPath path;
path.moveTo(0, 0);
int i = 1;
for (int points = 1; points < 2147483647; ) {
if (points == quadratic_at[next_quadratic_at]) {
path.quadTo(i, 0, i, 0);
next_quadratic_at++;
points += 2;
} else {
path.lineTo(i, 0);
points += 1;
}
i++;
if (i == 1000000) {
path.moveTo(0, 0);
points += 1;
i = 1;
}
}
canvas->drawPath(path, p);
}
#if 0
#include "gm/gm.h"
DEF_SIMPLE_GM(PathMeasure_explosion, canvas, 500,500) {
path_measure_explosion(canvas);
}
#endif