Home
last modified time | relevance | path

Searched refs:countInputs (Results 1 – 25 of 27) sorted by relevance

12

/external/skqp/src/effects/imagefilters/
DSkMergeImageFilter.cpp33 int inputCount = this->countInputs(); in onFilterImage()
98 SkSTArray<5, sk_sp<SkImageFilter>> inputs(this->countInputs()); in onMakeColorSpace()
100 for (int i = 0; i < this->countInputs(); i++) { in onMakeColorSpace()
106 return SkMergeImageFilter::Make(inputs.begin(), this->countInputs(), in onMakeColorSpace()
DSkColorFilterImageFilter.cpp122 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
134 SkASSERT(1 == this->countInputs()); in onIsColorFilterNode()
DSkComposeImageFilter.cpp67 SkASSERT(2 == this->countInputs() && this->getInput(0) && this->getInput(1)); in onMakeColorSpace()
DSkXfermodeImageFilter.cpp187 SkASSERT(2 == this->countInputs()); in onFilterBounds()
225 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
DSkOffsetImageFilter.cpp83 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkImageSource.cpp136 SkASSERT(0 == this->countInputs()); in onMakeColorSpace()
DSkTileImageFilter.cpp121 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkMagnifierImageFilter.cpp193 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkDropShadowImageFilter.cpp118 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkArithmeticImageFilter.cpp237 SkASSERT(2 == this->countInputs()); in onFilterBounds()
437 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
DSkAlphaThresholdFilter.cpp280 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkMatrixConvolutionImageFilter.cpp441 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkBlurImageFilter.cpp676 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
DSkDisplacementMapEffect.cpp361 SkASSERT(2 == this->countInputs()); in onMakeColorSpace()
/external/skia/src/core/
DSkImageFilter.cpp43 int SkImageFilter::countInputs() const { return as_IFB(this)->fInputs.count(); } in countInputs() function in SkImageFilter
50 SkASSERT(i < this->countInputs()); in getInput()
91 if (0 == this->countInputs()) { in computeFastBounds()
95 for (int i = 1; i < this->countInputs(); i++) { in computeFastBounds()
110 for (int i = 0; i < this->countInputs(); i++) { in canComputeFastBounds()
325 const int count = this->countInputs(); in canHandleComplexCTM()
444 if (this->countInputs() < 1) { in onFilterBounds()
449 for (int i = 0; i < this->countInputs(); ++i) { in onFilterBounds()
470 if (this->countInputs() < 1) { in visitInputLayerBounds()
479 for (int i = 0; i < this->countInputs(); ++i) { in visitInputLayerBounds()
[all …]
/external/skqp/src/core/
DSkImageFilter.cpp212 if (0 == this->countInputs()) { in computeFastBounds()
216 for (int i = 1; i < this->countInputs(); i++) { in computeFastBounds()
231 for (int i = 0; i < this->countInputs(); i++) { in canComputeFastBounds()
292 const int count = this->countInputs(); in canHandleComplexCTM()
406 if (this->countInputs() < 1) { in onFilterBounds()
411 for (int i = 0; i < this->countInputs(); ++i) { in onFilterBounds()
DSkLocalMatrixImageFilter.cpp62 SkASSERT(1 == this->countInputs() && this->getInput(0)); in onMakeColorSpace()
DSkMatrixImageFilter.cpp101 SkASSERT(1 == this->countInputs()); in onMakeColorSpace()
/external/skia/include/core/
DSkImageFilter.h76 int countInputs() const;
/external/skia/src/effects/imagefilters/
DSkMergeImageFilter.cpp62 int inputCount = this->countInputs(); in onFilterImage()
DSkColorFilterImageFilter.cpp145 SkASSERT(1 == this->countInputs()); in onIsColorFilterNode()
DSkBlendImageFilter.cpp179 SkASSERT(2 == this->countInputs()); in onFilterBounds()
DSkArithmeticImageFilter.cpp262 SkASSERT(2 == this->countInputs()); in onFilterBounds()
/external/skia/samplecode/
DSampleImageFilterDAG.cpp73 fInputNodes.reserve_back(fFilter->countInputs()); in FilterNode()
74 for (int i = 0; i < fFilter->countInputs(); ++i) { in FilterNode()
/external/skqp/include/core/
DSkImageFilter.h205 int countInputs() const { return fInputs.count(); } in countInputs() function

12