2010-12-06 18:52:40 +00:00
|
|
|
/*
|
2011-07-28 14:24:55 +00:00
|
|
|
* Copyright 2010 Google Inc.
|
2010-12-06 18:52:40 +00:00
|
|
|
*
|
2011-07-28 14:24:55 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2010-12-06 18:52:40 +00:00
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "include/core/SkPath.h"
|
|
|
|
#include "include/core/SkRegion.h"
|
|
|
|
#include "src/core/SkBlitter.h"
|
|
|
|
#include "src/core/SkScan.h"
|
|
|
|
#include "tests/Test.h"
|
2010-12-06 18:52:40 +00:00
|
|
|
|
|
|
|
struct FakeBlitter : public SkBlitter {
|
2016-06-10 20:01:27 +00:00
|
|
|
FakeBlitter()
|
|
|
|
: m_blitCount(0) { }
|
2010-12-06 18:52:40 +00:00
|
|
|
|
2016-06-10 20:01:27 +00:00
|
|
|
void blitH(int x, int y, int width) override {
|
|
|
|
m_blitCount++;
|
|
|
|
}
|
2010-12-06 18:52:40 +00:00
|
|
|
|
2016-06-10 20:01:27 +00:00
|
|
|
void blitAntiH(int x, int y, const SkAlpha antialias[], const int16_t runs[]) override {
|
|
|
|
SkDEBUGFAIL("blitAntiH not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_blitCount;
|
2010-12-06 18:52:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// http://code.google.com/p/skia/issues/detail?id=87
|
2012-08-23 18:14:13 +00:00
|
|
|
// Lines which is not clipped by boundary based clipping,
|
2010-12-06 18:52:40 +00:00
|
|
|
// but skipped after tessellation, should be cleared by the blitter.
|
2013-12-12 21:11:12 +00:00
|
|
|
DEF_TEST(FillPathInverse, reporter) {
|
2016-06-10 20:01:27 +00:00
|
|
|
FakeBlitter blitter;
|
|
|
|
SkIRect clip;
|
|
|
|
SkPath path;
|
|
|
|
int height = 100;
|
|
|
|
int width = 200;
|
|
|
|
int expected_lines = 5;
|
2019-08-24 23:39:13 +00:00
|
|
|
clip.setLTRB(0, height - expected_lines, width, height);
|
2018-08-15 14:23:39 +00:00
|
|
|
path.moveTo(0.0f, 0.0f)
|
|
|
|
.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
|
|
|
|
SkIntToScalar(width), 0.0f)
|
|
|
|
.close()
|
2019-11-26 17:17:17 +00:00
|
|
|
.setFillType(SkPathFillType::kInverseWinding);
|
2020-10-28 14:07:09 +00:00
|
|
|
SkScan::FillPath(path, clip, &blitter);
|
2010-12-06 18:52:40 +00:00
|
|
|
|
2016-06-10 20:01:27 +00:00
|
|
|
REPORTER_ASSERT(reporter, blitter.m_blitCount == expected_lines);
|
2010-12-06 18:52:40 +00:00
|
|
|
}
|