62f57a02b3
Client changes: - cl/443664347 - cl/444232853 - http://ag/17915718 - http://ag/17913178 - https://crrev.com/c/3602239 Change-Id: I16bcdbbe2b13bbf52f007b0f131e9ee0c14ed237 Bug: skia:13052 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/532257 Reviewed-by: Brian Osman <brianosman@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
62 lines
1.9 KiB
C++
62 lines
1.9 KiB
C++
/*
|
|
* Copyright 2018 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "fuzz/Fuzz.h"
|
|
|
|
#include "include/core/SkPoint.h"
|
|
#include "include/private/SkTDArray.h"
|
|
#include "include/private/SkTemplates.h"
|
|
#include "src/utils/SkPolyUtils.h"
|
|
|
|
void inline ignoreResult(bool ) {}
|
|
|
|
// clamps the point to the nearest 16th of a pixel
|
|
static SkPoint sanitize_point(const SkPoint& in) {
|
|
SkPoint out;
|
|
out.fX = SkScalarRoundToScalar(16.f*in.fX)*0.0625f;
|
|
out.fY = SkScalarRoundToScalar(16.f*in.fY)*0.0625f;
|
|
return out;
|
|
}
|
|
|
|
DEF_FUZZ(PolyUtils, fuzz) {
|
|
int count;
|
|
fuzz->nextRange(&count, 0, 512);
|
|
SkAutoSTMalloc<64, SkPoint> polygon(count);
|
|
for (int index = 0; index < count; ++index) {
|
|
fuzz->next(&polygon[index].fX, &polygon[index].fY);
|
|
polygon[index] = sanitize_point(polygon[index]);
|
|
}
|
|
SkRect bounds;
|
|
bounds.setBoundsCheck(polygon, count);
|
|
|
|
ignoreResult(SkGetPolygonWinding(polygon, count));
|
|
bool isConvex = SkIsConvexPolygon(polygon, count);
|
|
bool isSimple = SkIsSimplePolygon(polygon, count);
|
|
|
|
SkTDArray<SkPoint> output;
|
|
if (isConvex) {
|
|
SkScalar inset;
|
|
fuzz->next(&inset);
|
|
ignoreResult(SkInsetConvexPolygon(polygon, count, inset, &output));
|
|
}
|
|
|
|
if (isSimple) {
|
|
SkScalar offset;
|
|
// Limit this to prevent timeouts.
|
|
// This should be fine, as this is roughly the range we expect from the shadow algorithm.
|
|
fuzz->nextRange(&offset, -1000, 1000);
|
|
ignoreResult(SkOffsetSimplePolygon(polygon, count, bounds, offset, &output));
|
|
|
|
SkAutoSTMalloc<64, uint16_t> indexMap(count);
|
|
for (int index = 0; index < count; ++index) {
|
|
fuzz->next(&indexMap[index]);
|
|
}
|
|
SkTDArray<uint16_t> outputIndices;
|
|
ignoreResult(SkTriangulateSimplePolygon(polygon, indexMap, count, &outputIndices));
|
|
}
|
|
}
|