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
|
|
|
*/
|
|
|
|
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "SkBlitter.h"
|
2010-12-06 18:52:40 +00:00
|
|
|
#include "SkPath.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "SkRegion.h"
|
2010-12-06 18:52:40 +00:00
|
|
|
#include "SkScan.h"
|
2014-01-24 20:56:26 +00:00
|
|
|
#include "Test.h"
|
2010-12-06 18:52:40 +00:00
|
|
|
|
|
|
|
struct FakeBlitter : public SkBlitter {
|
|
|
|
FakeBlitter()
|
|
|
|
: m_blitCount(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
virtual void blitH(int x, int y, int width) {
|
|
|
|
m_blitCount++;
|
|
|
|
}
|
|
|
|
|
|
|
|
int m_blitCount;
|
|
|
|
};
|
|
|
|
|
|
|
|
// 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) {
|
2010-12-06 18:52:40 +00:00
|
|
|
FakeBlitter blitter;
|
2011-10-24 12:19:46 +00:00
|
|
|
SkIRect clip;
|
2010-12-06 18:52:40 +00:00
|
|
|
SkPath path;
|
|
|
|
int height = 100;
|
|
|
|
int width = 200;
|
|
|
|
int expected_lines = 5;
|
2011-10-24 12:19:46 +00:00
|
|
|
clip.set(0, height - expected_lines, width, height);
|
2012-06-06 12:03:39 +00:00
|
|
|
path.moveTo(0.0f, 0.0f);
|
2012-04-10 17:42:21 +00:00
|
|
|
path.quadTo(SkIntToScalar(width/2), SkIntToScalar(height),
|
2012-06-06 12:03:39 +00:00
|
|
|
SkIntToScalar(width), 0.0f);
|
2010-12-06 18:52:40 +00:00
|
|
|
path.close();
|
|
|
|
path.setFillType(SkPath::kInverseWinding_FillType);
|
|
|
|
SkScan::FillPath(path, clip, &blitter);
|
|
|
|
|
|
|
|
REPORTER_ASSERT(reporter, blitter.m_blitCount == expected_lines);
|
|
|
|
}
|