HomeSort by relevance Sort by last modified time
    Searched refs:GrPrimitiveEdgeType (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/skia/src/gpu/effects/
GrOvalEffect.h 21 GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRect&);
GrRRectEffect.h 22 GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRRect&);
GrConvexPolyEffect.h 40 static GrFragmentProcessor* Create(GrPrimitiveEdgeType edgeType, int n,
53 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkPath&,
59 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRect&);
65 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
78 GrConvexPolyEffect(GrPrimitiveEdgeType edgeType, int n, const SkScalar edges[]);
82 GrPrimitiveEdgeType fEdgeType;
GrBezierEffect.h 60 static GrGeometryProcessor* Create(const GrPrimitiveEdgeType edgeType,
96 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
108 GrConicEffect(GrPrimitiveEdgeType);
112 GrPrimitiveEdgeType fEdgeType;
133 static GrGeometryProcessor* Create(const GrPrimitiveEdgeType edgeType,
169 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
181 GrQuadEffect(GrPrimitiveEdgeType);
185 GrPrimitiveEdgeType fEdgeType;
208 static GrGeometryProcessor* Create(const GrPrimitiveEdgeType edgeType,
244 inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType;
    [all...]
GrDashingEffect.h 39 GrGeometryProcessor* Create(GrPrimitiveEdgeType edgeType,
GrOvalEffect.cpp 23 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkPoint& center, SkScalar radius);
31 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
40 CircleEffect(GrPrimitiveEdgeType, const SkPoint& center, SkScalar radius);
46 GrPrimitiveEdgeType fEdgeType;
53 GrFragmentProcessor* CircleEffect::Create(GrPrimitiveEdgeType edgeType, const SkPoint& center,
67 CircleEffect::CircleEffect(GrPrimitiveEdgeType edgeType, const SkPoint& c, SkScalar r)
91 GrPrimitiveEdgeType et;
93 et = (GrPrimitiveEdgeType)random->nextULessThan(kGrProcessorEdgeTypeCnt);
194 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkPoint& center, SkScalar rx,
203 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType;
    [all...]
GrConvexPolyEffect.cpp 28 static GrFragmentProcessor* Create(GrPrimitiveEdgeType edgeType, const SkRect& rect) {
43 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
48 AARectEffect(GrPrimitiveEdgeType edgeType, const SkRect& rect) : fRect(rect), fEdgeType(edgeType) {
58 GrPrimitiveEdgeType fEdgeType;
78 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(random->nextULessThan(
271 GrFragmentProcessor* GrConvexPolyEffect::Create(GrPrimitiveEdgeType type, const SkPath& path,
322 GrFragmentProcessor* GrConvexPolyEffect::Create(GrPrimitiveEdgeType edgeType, const SkRect& rect) {
339 GrConvexPolyEffect::GrConvexPolyEffect(GrPrimitiveEdgeType edgeType, int n, const SkScalar edges[])
376 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>
    [all...]
GrBezierEffect.cpp 33 GrPrimitiveEdgeType fEdgeType;
137 GrConicEffect::GrConicEffect(GrPrimitiveEdgeType edgeType)
159 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(
187 GrPrimitiveEdgeType fEdgeType;
275 GrQuadEffect::GrQuadEffect(GrPrimitiveEdgeType edgeType)
297 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(
325 GrPrimitiveEdgeType fEdgeType;
455 GrCubicEffect::GrCubicEffect(GrPrimitiveEdgeType edgeType
    [all...]
GrDashingEffect.cpp 347 GrPrimitiveEdgeType edgeType= useAA ? kFillAA_GrProcessorEdgeType :
439 static GrGeometryProcessor* Create(GrPrimitiveEdgeType edgeType,
449 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
464 DashingCircleEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info, SkScalar radius);
468 GrPrimitiveEdgeType fEdgeType;
576 GrGeometryProcessor* DashingCircleEffect::Create(GrPrimitiveEdgeType edgeType, const DashInfo& info,
595 DashingCircleEffect::DashingCircleEffect(GrPrimitiveEdgeType edgeType, const DashInfo& info,
622 GrPrimitiveEdgeType edgeType = static_cast<GrPrimitiveEdgeType>(random->nextULessThan(
653 static GrGeometryProcessor* Create(GrPrimitiveEdgeType edgeType
    [all...]
GrRRectEffect.cpp 48 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, uint32_t circularCornerFlags,
58 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
67 CircularRRectEffect(GrPrimitiveEdgeType, uint32_t circularCornerFlags, const SkRRect&);
72 GrPrimitiveEdgeType fEdgeType;
80 GrFragmentProcessor* CircularRRectEffect::Create(GrPrimitiveEdgeType edgeType,
97 CircularRRectEffect::CircularRRectEffect(GrPrimitiveEdgeType edgeType, uint32_t circularCornerFlags,
126 GrPrimitiveEdgeType et =
127 (GrPrimitiveEdgeType)random->nextULessThan(kGrProcessorEdgeTypeCnt);
390 static GrFragmentProcessor* Create(GrPrimitiveEdgeType, const SkRRect&);
398 GrPrimitiveEdgeType getEdgeType() const { return fEdgeType;
    [all...]
  /external/chromium_org/third_party/skia/include/gpu/
GrTypesPriv.h 179 enum GrPrimitiveEdgeType {
191 static inline bool GrProcessorEdgeTypeIsFill(const GrPrimitiveEdgeType edgeType) {
195 static inline bool GrProcessorEdgeTypeIsInverseFill(const GrPrimitiveEdgeType edgeType) {
200 static inline bool GrProcessorEdgeTypeIsAA(const GrPrimitiveEdgeType edgeType) {
204 static inline GrPrimitiveEdgeType GrInvertProcessorEdgeType(const GrPrimitiveEdgeType edgeType) {
  /external/chromium_org/third_party/skia/gm/
convexpolyeffect.cpp 130 GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
182 GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
beziereffects.cpp 103 GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)edgeType;
261 GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)edgeType;
450 GrPrimitiveEdgeType et = (GrPrimitiveEdgeType)edgeType;
rrects.cpp 119 GrPrimitiveEdgeType edgeType = (GrPrimitiveEdgeType) et;
  /external/chromium_org/third_party/skia/src/gpu/
GrOvalRenderer.cpp     [all...]
GrClipMaskManager.cpp 157 GrPrimitiveEdgeType edgeType;
    [all...]

Completed in 836 milliseconds