Searched refs:numOctaves (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGFETurbulenceElement.idl45 readonly attribute SVGAnimatedInteger numOctaves;
H A DSVGFETurbulenceElement.h60 DECLARE_ANIMATED_INTEGER(NumOctaves, numOctaves)
H A DSVGFETurbulenceElement.cpp35 DEFINE_ANIMATED_INTEGER(SVGFETurbulenceElement, SVGNames::numOctavesAttr, NumOctaves, numOctaves)
104 return turbulence->setNumOctaves(numOctaves());
173 baseFrequencyY(), numOctaves(), seed(), stitchTiles() == SVG_STITCHTYPE_STITCH);
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFETurbulence.cpp52 FETurbulence::FETurbulence(Filter* filter, TurbulenceType type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
57 , m_numOctaves(numOctaves)
63 PassRefPtr<FETurbulence> FETurbulence::create(Filter* filter, TurbulenceType type, float baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles) argument
65 return adoptRef(new FETurbulence(filter, type, baseFrequencyX, baseFrequencyY, numOctaves, seed, stitchTiles));
120 int FETurbulence::numOctaves() const function in class:WebCore::FETurbulence
125 bool FETurbulence::setNumOctaves(int numOctaves) argument
127 if (m_numOctaves == numOctaves)
129 m_numOctaves = numOctaves;
398 << "numOctaves=\"" << numOctaves() << "\" "
[all...]
H A DFETurbulence.h55 int numOctaves() const;

Completed in 50 milliseconds