Searched defs:startRadius (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/skia/include/effects/
H A DSkGradientShader.h107 It is an error for colorCount to be < 2, for startRadius or endRadius to be < 0, or for
108 startRadius to be equal to endRadius.
110 @param startRadius Must be positive. The radius of the start circle for this gradient.
122 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius,
128 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, argument
132 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
137 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, argument
142 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
153 static SkShader* CreateTwoPointConical(const SkPoint& start, SkScalar startRadius,
159 static SkShader* CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, argument
168 CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int count, SkShader::TileMode mode, void* ignored, uint32_t flags, const SkMatrix* localMatrix) argument
[all...]
/external/skia/include/effects/
H A DSkGradientShader.h107 It is an error for colorCount to be < 2, for startRadius or endRadius to be < 0, or for
108 startRadius to be equal to endRadius.
110 @param startRadius Must be positive. The radius of the start circle for this gradient.
122 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius,
128 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, argument
132 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
137 static SkShader* CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, argument
142 return CreateTwoPointRadial(start, startRadius, end, endRadius, colors, pos, count, mode,
153 static SkShader* CreateTwoPointConical(const SkPoint& start, SkScalar startRadius,
159 static SkShader* CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, argument
168 CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int count, SkShader::TileMode mode, void* ignored, uint32_t flags, const SkMatrix* localMatrix) argument
[all...]
/external/chromium_org/third_party/angle/samples/angle/particle_system/
H A DParticleSystem.cpp108 float startRadius = RandomBetween(0.0f, 0.25f); local
109 mParticles[i].startPosition.x = sinf(startAngle) * startRadius;
110 mParticles[i].startPosition.y = cosf(startAngle) * startRadius;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DGradient.h92 float startRadius() const { return m_r0; } function in class:blink::Gradient
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkTwoPointRadialGradient.cpp170 SkTwoPointRadialGradient::SkTwoPointRadialGradient(const SkPoint& start, SkScalar startRadius, argument
176 , fRadius1(startRadius)
H A DSkTwoPointConicalGradient.cpp197 const SkPoint& start, SkScalar startRadius,
203 , fRadius1(startRadius)
196 SkTwoPointConicalGradient( const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, bool flippedGrad, const Descriptor& desc) argument
H A DSkGradientShader.cpp851 SkScalar startRadius,
860 if (startRadius < 0 || endRadius < 0 || NULL == colors || colorCount < 1) {
868 (start, startRadius, end, endRadius, desc));
872 SkScalar startRadius,
881 if (startRadius < 0 || endRadius < 0 || NULL == colors || colorCount < 1) {
884 if (start == end && startRadius == endRadius) {
890 bool flipGradient = startRadius > endRadius;
897 (start, startRadius, end, endRadius, flipGradient, desc));
915 (end, endRadius, start, startRadius, flipGradient, desc));
850 CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int colorCount, SkShader::TileMode mode, uint32_t flags, const SkMatrix* localMatrix) argument
871 CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int colorCount, SkShader::TileMode mode, uint32_t flags, const SkMatrix* localMatrix) argument
/external/skia/src/effects/gradients/
H A DSkTwoPointRadialGradient.cpp171 const SkPoint& start, SkScalar startRadius,
177 fRadius1(startRadius),
170 SkTwoPointRadialGradient( const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const Descriptor& desc, const SkMatrix* localMatrix) argument
H A DSkTwoPointConicalGradient.cpp197 const SkPoint& start, SkScalar startRadius,
204 fRadius1(startRadius),
196 SkTwoPointConicalGradient( const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, bool flippedGrad, const Descriptor& desc, const SkMatrix* localMatrix) argument
H A DSkGradientShader.cpp759 SkScalar startRadius,
768 if (startRadius < 0 || endRadius < 0 || NULL == colors || colorCount < 1) {
776 (start, startRadius, end, endRadius, desc, localMatrix));
780 SkScalar startRadius,
789 if (startRadius < 0 || endRadius < 0 || NULL == colors || colorCount < 1) {
792 if (start == end && startRadius == endRadius) {
798 bool flipGradient = startRadius > endRadius;
805 (start, startRadius, end, endRadius, flipGradient, desc, localMatrix));
823 (end, endRadius, start, startRadius, flipGradient, desc, localMatrix));
758 CreateTwoPointRadial(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int colorCount, SkShader::TileMode mode, uint32_t flags, const SkMatrix* localMatrix) argument
779 CreateTwoPointConical(const SkPoint& start, SkScalar startRadius, const SkPoint& end, SkScalar endRadius, const SkColor colors[], const SkScalar pos[], int colorCount, SkShader::TileMode mode, uint32_t flags, const SkMatrix* localMatrix) argument

Completed in 215 milliseconds