OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Convexity
(Results
1 - 3
of
3
) sorted by null
/external/skia/include/core/
SkPath.h
100
enum
Convexity
{
107
* Return the path's
convexity
, as stored in the path. If it is currently
111
Convexity
getConvexity() const {
115
return (
Convexity
)fConvexity;
119
* Return the currently cached value for
convexity
, even if that is set to
124
Convexity
getConvexityOrUnknown() const { return (
Convexity
)fConvexity; }
127
* Store a
convexity
setting in the path. There is no automatic check to
135
void setConvexity(
Convexity
);
138
* Compute the
convexity
of the specified path. This does not look at th
[
all
...]
/external/skia/tests/
PathTest.cpp
7
SkPath::
Convexity
expected) {
8
SkPath::
Convexity
c = SkPath::ComputeConvexity(path);
134
static const SkPath::
Convexity
C = SkPath::kConcave_Convexity;
135
static const SkPath::
Convexity
V = SkPath::kConvex_Convexity;
153
SkPath::
Convexity
fExpectedConvexity;
168
SkPath::
Convexity
c = SkPath::ComputeConvexity(path);
/external/skia/src/core/
SkPath.cpp
247
void SkPath::setConvexity(
Convexity
c) {
[
all
...]
Completed in 32 milliseconds