HomeSort by relevance Sort by last modified time
    Searched refs:SkIRect (Results 1 - 25 of 434) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/src/core/
SkScanPriv.h 18 SkScanClipper(SkBlitter* blitter, const SkRegion* clip, const SkIRect& bounds,
22 const SkIRect* getClipRect() const { return fClipRect; }
28 const SkIRect* fClipRect;
32 void sk_fill_path(const SkPath& path, const SkIRect* clipRect,
37 void sk_blit_above(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
38 void sk_blit_below(SkBlitter*, const SkIRect& avoid, const SkRegion& clip);
SkNinePatchIter.h 13 struct SkIRect;
21 static bool Valid(int imageWidth, int imageHeight, const SkIRect& center);
23 SkNinePatchIter(int imageWidth, int imageHeight, const SkIRect& center, const SkRect& dst);
SkImageGeneratorPriv.h 36 bool SkDEPRECATED_InstallDiscardablePixelRef(SkImageGenerator*, const SkIRect* subset,
SkImageFilterCacheKey.h 13 const SkIRect& clipBounds, uint32_t srcGenID, const SkIRect& srcSubset)
20 static_assert(sizeof(Key) == sizeof(uint32_t) + sizeof(SkMatrix) + sizeof(SkIRect) +
28 SkIRect fClipBounds;
30 SkIRect fSrcSubset;
SkSpecialImage.h 44 const SkIRect& subset() const { return fSubset; }
55 static SkSpecialImage* NewFromImage(const SkIRect& subset, const SkImage*);
57 const SkIRect& subset,
60 const SkIRect& subset,
76 SkSpecialImage(SkImageFilter::Proxy* proxy, const SkIRect& subset, uint32_t uniqueID)
109 const SkIRect fSubset;
SkRasterClip.h 19 SkRasterClip(const SkIRect&, bool forceConservativeRects = false);
41 const SkIRect& getBounds() const;
44 bool setRect(const SkIRect&);
46 bool op(const SkIRect&, SkRegion::Op);
48 bool op(const SkRect&, const SkIRect&, SkRegion::Op, bool doAA);
49 bool op(const SkRRect&, const SkIRect&, SkRegion::Op, bool doAA);
50 bool op(const SkPath&, const SkIRect&, SkRegion::Op, bool doAA);
57 bool quickContains(const SkIRect& rect) const;
59 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom));
67 bool quickReject(const SkIRect& rect) const
    [all...]
SkSpecialSurface.h 57 const SkIRect& subset, GrTexture*,
72 const SkIRect& subset, SkBitmap& bm,
86 SkSpecialSurface(SkImageFilter::Proxy*, const SkIRect& subset, const SkSurfaceProps*);
90 const SkIRect& subset() const { return fSubset; }
97 const SkIRect fSubset;
SkDeviceLooper.h 33 SkDeviceLooper(const SkPixmap& base, const SkRasterClip&, const SkIRect& bounds, bool aa);
78 SkIRect fClippedBounds;
88 bool fitsInDelta(const SkIRect& r) const {
SkLocalMatrixImageFilter.h 30 bool onFilterBounds(const SkIRect& src, const SkMatrix&, SkIRect* dst,
SkMatrixImageFilter.h 49 void onFilterNodeBounds(const SkIRect& src, const SkMatrix&,
50 SkIRect* dst, MapDirection) const override;
SkScan.cpp 14 static inline void blitrect(SkBlitter* blitter, const SkIRect& r) {
18 void SkScan::FillIRect(const SkIRect& r, const SkRegion* clip,
23 const SkIRect& clipBounds = clip->getBounds();
28 SkIRect rr = r;
35 const SkIRect& rr = cliper.rect();
50 SkIRect r;
58 SkIRect ir;
66 void SkScan::FillIRect(const SkIRect& r, const SkRasterClip& clip,
  /external/skia/src/gpu/batches/
GrNinePatch.h 16 struct SkIRect;
21 const SkIRect& center, const SkRect& dst);
  /external/skia/include/core/
SkRasterizer.h 19 struct SkIRect;
26 const SkIRect* clipBounds, SkMaskFilter* filter,
34 const SkIRect* clipBounds,
SkRegion.h 39 explicit SkRegion(const SkIRect&);
85 const SkIRect& getBounds() const { return fBounds; }
114 bool setRect(const SkIRect&);
128 bool setRects(const SkIRect rects[], int count);
148 bool intersects(const SkIRect&) const;
167 bool contains(const SkIRect&) const;
183 bool quickContains(const SkIRect& r) const {
210 bool quickReject(const SkIRect& rect) const {
212 !SkIRect::Intersects(fBounds, rect);
222 !SkIRect::Intersects(fBounds, rgn.fBounds)
    [all...]
  /external/skia/include/effects/
SkMatrixConvolutionImageFilter.h 82 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirection) const override;
87 const SkIRect& bounds) const override;
103 const SkIRect& rect,
104 const SkIRect& bounds) const;
108 const SkIRect& rect,
109 const SkIRect& bounds) const;
112 const SkIRect& rect,
113 const SkIRect& bounds) const;
116 const SkIRect& rect
    [all...]
SkTileImageFilter.h 26 bool onFilterBounds(const SkIRect& src, const SkMatrix&,
27 SkIRect* dst, MapDirection) const override;
28 void onFilterNodeBounds(const SkIRect&, const SkMatrix&, SkIRect*, MapDirection) const override;
  /external/skia/src/gpu/
GrReducedClip.h 41 const SkIRect& queryBounds,
45 SkIRect* tighterBounds = nullptr,
GrPathRenderingDrawContext.h 19 SkScalar x, SkScalar y, const SkIRect& clipBounds) override;
23 const SkPoint& offset, const SkIRect& clipBounds) override;
27 SkDrawFilter*, const SkIRect& clipBounds) override;
  /external/skia/tests/
RegionTest.cpp 13 static void Union(SkRegion* rgn, const SkIRect& rect) {
25 Union(&r, SkIRect::MakeXYWH(0, 0, 1, 1));
26 TEST_NO_INTERSECT(r, SkIRect::MakeXYWH(0, 0, 0, 0));
27 TEST_INTERSECT(r, SkIRect::MakeXYWH(0, 0, 2, 2));
28 TEST_INTERSECT(r, SkIRect::MakeXYWH(-1, 0, 2, 2));
29 TEST_INTERSECT(r, SkIRect::MakeXYWH(-1, -1, 2, 2));
30 TEST_INTERSECT(r, SkIRect::MakeXYWH(0, -1, 2, 2));
31 TEST_INTERSECT(r, SkIRect::MakeXYWH(-1, -1, 3, 3));
33 Union(&r, SkIRect::MakeXYWH(0, 0, 3, 3));
34 Union(&r, SkIRect::MakeXYWH(10, 0, 3, 3))
    [all...]
FlattenableFactoryToName.cpp 27 SkIRect rects[2];
28 rects[0] = SkIRect::MakeXYWH(0, 150, 500, 200);
29 rects[1] = SkIRect::MakeXYWH(150, 0, 200, 500);
  /external/skia/bench/
SKPAnimationBench.h 23 virtual void preConcatFrameMatrix(double animationTimeMs, const SkIRect& devBounds,
28 SKPAnimationBench(const char* name, const SkPicture*, const SkIRect& devClip, Animation*,
46 SkIRect fDevBounds;
BitmapRegionDecoderBench.h 31 uint32_t sampleSize, const SkIRect& subset);
46 const SkIRect fSubset;
  /external/skia/src/gpu/effects/
GrMatrixConvolutionEffect.h 22 const SkIRect& bounds,
35 const SkIRect& bounds,
45 const SkIRect& bounds() const { return fBounds; }
58 const SkIRect& bounds,
78 SkIRect fBounds;
  /external/skia/include/gpu/
SkGrPixelRef.h 52 bool onReadPixels(SkBitmap* dst, SkColorType, const SkIRect* subset) override;
54 const SkIRect* subset) override;
  /external/skia/src/animator/
SkBoundable.h 23 void setBounds(SkIRect& bounds) { fBounds = bounds; }
26 SkIRect fBounds;

Completed in 273 milliseconds

1 2 3 4 5 6 7 8 91011>>