OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Convexity
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/include/core/
SkPath.h
88
enum
Convexity
{
95
* Return the path's
convexity
, as stored in the path. If it is currently unknown,
96
* then this function will attempt to compute the
convexity
(and cache the result).
98
Convexity
getConvexity() const {
100
return static_cast<
Convexity
>(fConvexity);
107
* Return the currently cached value for
convexity
, even if that is set to
112
Convexity
getConvexityOrUnknown() const { return (
Convexity
)fConvexity; }
115
* Store a
convexity
setting in the path. There is no automatic check to
123
void setConvexity(
Convexity
);
[
all
...]
/external/skia/include/core/
SkPath.h
88
enum
Convexity
{
95
* Return the path's
convexity
, as stored in the path. If it is currently unknown,
96
* then this function will attempt to compute the
convexity
(and cache the result).
98
Convexity
getConvexity() const {
100
return static_cast<
Convexity
>(fConvexity);
107
* Return the currently cached value for
convexity
, even if that is set to
112
Convexity
getConvexityOrUnknown() const { return (
Convexity
)fConvexity; }
115
* Store a
convexity
setting in the path. There is no automatic check to
123
void setConvexity(
Convexity
);
[
all
...]
Completed in 49 milliseconds