Searched refs:SkIVector (Results 1 - 14 of 14) sorted by relevance
/third_party/skia/src/effects/imagefilters/ |
H A D | SkMatrixConvolutionImageFilter.cpp | 78 SkIVector& offset, 84 SkIVector& offset, 89 SkIVector& offset, 94 SkIVector& offset, 237 SkIVector& offset, in filterPixels() 281 SkIVector& offset, in filterPixels() 293 SkIVector& offset, in filterInteriorPixels() 313 SkIVector& offset, in filterBorderPixels() 464 SkIVector dstContentOffset = { offset->fX - inputOffset.fX, offset->fY - inputOffset.fY }; in onFilterImage()
|
/third_party/skia/include/core/ |
H A D | SkPoint.h | 19 /** SkIVector provides an alternative name for SkIPoint. SkIVector and SkIPoint 22 typedef SkIPoint SkIVector; typedef 81 void operator+=(const SkIVector& v) { in operator +=() 90 void operator-=(const SkIVector& v) { in operator -=() 133 friend SkIVector operator-(const SkIPoint& a, const SkIPoint& b) { in operator -() 147 friend SkIPoint operator+(const SkIPoint& a, const SkIVector& b) { in operator +()
|
H A D | SkMatrix.h | 89 static SkMatrix SK_WARN_UNUSED_RESULT Translate(SkIVector t) { return Translate(t.x(), t.y()); } in Translate()
|
H A D | SkRect.h | 319 constexpr SkIRect makeOffset(SkIVector offset) const { in makeOffset()
|
/third_party/skia/src/core/ |
H A D | SkImageFilterTypes.h | 38 explicit IVector(const SkIVector& v) : fX(v.fX), fY(v.fY) {} in IVector() 60 // skif::IVector (to distinguish SkIVector from SkIPoint), skif::Vector, SkISize, and SkSize. 132 explicit operator SkIVector() const { return SkIVector::Make(fData.fX, fData.fY); } in operator SkIVector() 234 return LayerSpace<SkIPoint>(fData + SkIVector(v)); in operator +() 237 return LayerSpace<SkIPoint>(fData - SkIVector(v)); in operator -() 241 fData += SkIVector(v); in operator +=() 244 fData -= SkIVector(v); in operator -=() 367 void offset(const LayerSpace<IVector>& v) { fData.offset(SkIVector(v)); } in offset()
|
H A D | SkImageFilterTypes.cpp | 15 static SkIVector map_as_vector(int32_t x, int32_t y, const SkMatrix& matrix) { in map_as_vector() 18 return SkIVector::Make(SkScalarRoundToInt(v.fX), SkScalarRoundToInt(v.fY)); in map_as_vector() 133 SkIVector v = map_as_vector(geom.fWidth, geom.fHeight, matrix); in map()
|
H A D | SkSDFFilter.h | 35 SkIVector fOffset;
|
H A D | SkImageFilter_Base.h | 333 const SkIVector& filterOffset,
|
H A D | SkGpuBlurUtils.cpp | 71 SkIVector dstToSrcOffset, in convolve_gaussian_1d() 437 SkIVector newDstBoundsOffset = dstBounds.topLeft() - xPassDstBounds.topLeft(); in two_pass_gaussian()
|
H A D | SkImageFilter.cpp | 657 const SkIVector& filterOffset, in DetermineRepeatedSrcBound()
|
/third_party/skia/tools/ |
H A D | DDLTileHelper.h | 68 SkIVector padOffset() const { return { fPaddingOutsets.fLeft, fPaddingOutsets.fTop }; } in padOffset()
|
/third_party/skia/gm/ |
H A D | compressed_textures.cpp | 266 void drawCell(SkCanvas* canvas, SkImage* image, SkIVector offset) { in drawCell()
|
/third_party/skia/src/gpu/ |
H A D | GrBlurUtils.cpp | 76 SkIVector fOffset;
|
/third_party/skia/src/gpu/text/ |
H A D | GrTextBlob.cpp | 829 SkIVector iOffset = {SkScalarRoundToInt(offset.x()), SkScalarRoundToInt(offset.y())}; in deviceRect()
|
Completed in 21 milliseconds