OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SkPathOpsBounds
(Results
1 - 20
of
20
) sorted by null
/external/chromium_org/third_party/skia/src/pathops/
SkPathOpsBounds.cpp
7
#include "
SkPathOpsBounds
.h"
12
void
SkPathOpsBounds
::setCubicBounds(const SkPoint a[4]) {
21
void
SkPathOpsBounds
::setLineBounds(const SkPoint a[2]) {
26
void
SkPathOpsBounds
::setQuadBounds(const SkPoint a[3]) {
35
void (
SkPathOpsBounds
::*SetCurveBounds[])(const SkPoint[]) = {
37
&
SkPathOpsBounds
::setLineBounds,
38
&
SkPathOpsBounds
::setQuadBounds,
39
&
SkPathOpsBounds
::setCubicBounds
SkPathOpsBounds.h
13
//
SkPathOpsBounds
, unlike SkRect, does not consider a line to be empty.
14
struct
SkPathOpsBounds
: public SkRect {
15
static bool Intersects(const
SkPathOpsBounds
& a, const
SkPathOpsBounds
& b) {
32
void add(const
SkPathOpsBounds
& toAdd) {
70
extern void (
SkPathOpsBounds
::*SetCurveBounds[])(const SkPoint[]);
SkOpContour.h
85
const
SkPathOpsBounds
& bounds() const {
256
SkPathOpsBounds
fBounds;
SkIntersectionHelper.h
61
const
SkPathOpsBounds
& bounds() const {
SkOpSegment.h
12
#include "
SkPathOpsBounds
.h"
31
const
SkPathOpsBounds
& bounds() const {
389
void subDivideBounds(int start, int end,
SkPathOpsBounds
* bounds) const;
435
SkPathOpsBounds
fBounds;
SkAddIntersections.cpp
8
#include "
SkPathOpsBounds
.h"
183
if (!
SkPathOpsBounds
::Intersects(test->bounds(), next->bounds())) {
197
if (!
SkPathOpsBounds
::Intersects(wt.bounds(), wn.bounds())) {
SkPathOpsCommon.cpp
234
const
SkPathOpsBounds
& bounds = contour->bounds();
SkOpSegment.cpp
852
SkPathOpsBounds
bounds;
[
all
...]
/external/skia/src/pathops/
SkPathOpsBounds.cpp
7
#include "
SkPathOpsBounds
.h"
12
void
SkPathOpsBounds
::setCubicBounds(const SkPoint a[4]) {
21
void
SkPathOpsBounds
::setLineBounds(const SkPoint a[2]) {
26
void
SkPathOpsBounds
::setQuadBounds(const SkPoint a[3]) {
35
void (
SkPathOpsBounds
::*SetCurveBounds[])(const SkPoint[]) = {
37
&
SkPathOpsBounds
::setLineBounds,
38
&
SkPathOpsBounds
::setQuadBounds,
39
&
SkPathOpsBounds
::setCubicBounds
SkPathOpsBounds.h
13
//
SkPathOpsBounds
, unlike SkRect, does not consider a line to be empty.
14
struct
SkPathOpsBounds
: public SkRect {
15
static bool Intersects(const
SkPathOpsBounds
& a, const
SkPathOpsBounds
& b) {
32
void add(const
SkPathOpsBounds
& toAdd) {
70
extern void (
SkPathOpsBounds
::*SetCurveBounds[])(const SkPoint[]);
SkOpContour.h
85
const
SkPathOpsBounds
& bounds() const {
256
SkPathOpsBounds
fBounds;
SkIntersectionHelper.h
61
const
SkPathOpsBounds
& bounds() const {
SkOpSegment.h
12
#include "
SkPathOpsBounds
.h"
31
const
SkPathOpsBounds
& bounds() const {
389
void subDivideBounds(int start, int end,
SkPathOpsBounds
* bounds) const;
435
SkPathOpsBounds
fBounds;
SkAddIntersections.cpp
8
#include "
SkPathOpsBounds
.h"
183
if (!
SkPathOpsBounds
::Intersects(test->bounds(), next->bounds())) {
197
if (!
SkPathOpsBounds
::Intersects(wt.bounds(), wn.bounds())) {
SkPathOpsCommon.cpp
234
const
SkPathOpsBounds
& bounds = contour->bounds();
SkOpSegment.cpp
852
SkPathOpsBounds
bounds;
[
all
...]
/external/skia/tests/
PathOpsBoundsTest.cpp
8
#include "
SkPathOpsBounds
.h"
51
const
SkPathOpsBounds
& bounds1 = static_cast<const
SkPathOpsBounds
&>(sectTests[index][0]);
53
const
SkPathOpsBounds
& bounds2 = static_cast<const
SkPathOpsBounds
&>(sectTests[index][1]);
55
bool touches =
SkPathOpsBounds
::Intersects(bounds1, bounds2);
59
const
SkPathOpsBounds
& bounds1 = static_cast<const
SkPathOpsBounds
&>(noSectTests[index][0]);
61
const
SkPathOpsBounds
& bounds2 = static_cast<const
SkPathOpsBounds
&>(noSectTests[index][1])
[
all
...]
PathOpsTestCommon.h
13
struct
SkPathOpsBounds
;
16
bool ValidBounds(const
SkPathOpsBounds
&);
PathOpsTestCommon.cpp
8
#include "
SkPathOpsBounds
.h"
36
bool ValidBounds(const
SkPathOpsBounds
& bounds) {
/external/skia/
Android.mk
322
src/pathops/
SkPathOpsBounds
.cpp \
Completed in 197 milliseconds