HomeSort by relevance Sort by last modified time
    Searched refs:Clip (Results 1 - 15 of 15) sorted by null

  /external/skia/include/core/
SkClipStack.h 44 struct Clip {
45 friend bool operator==(const Clip& a, const Clip& b);
46 friend bool operator!=(const Clip& a, const Clip& b);
47 const SkRect* fRect; // if non-null, this is a rect clip
48 const SkPath* fPath; // if non-null, this is a path clip
53 * Return the clip for this element in the iterator. If next() returns
54 * NULL, then the iterator is done. The type of clip is determined by
57 * fRect==NULL fPath!=NULL path clip
    [all...]
  /external/skia/src/animator/
SkDrawClip.h 29 DECLARE_DRAW_MEMBER_INFO(Clip);
SkDisplayType.cpp 117 CASE_DRAW_NEW(Clip);
272 CASE_GET_DRAW_INFO(Clip);
439 DRAW_NAME("clip", SkType_Clip),
  /external/libyuv/files/source/
convert.cc 26 static inline uint8 Clip(int32 val) {
62 out[0] = Clip(tmp_b);
63 out[1] = Clip(tmp_g);
64 out[2] = Clip(tmp_r);
69 out[3] = Clip(tmp_b);
70 out[4] = Clip(tmp_g);
71 out[5] = Clip(tmp_r);
76 out2[0] = Clip(tmp_b);
77 out2[1] = Clip(tmp_g);
78 out2[2] = Clip(tmp_r)
    [all...]
  /external/skia/src/core/
SkClipStack.cpp 51 * Returns true if this Rec can be intersected in place with a new clip
184 bool operator==(const SkClipStack::B2FIter::Clip& a,
185 const SkClipStack::B2FIter::Clip& b) {
191 bool operator!=(const SkClipStack::B2FIter::Clip& a,
192 const SkClipStack::B2FIter::Clip& b) {
200 const SkClipStack::B2FIter::Clip* SkClipStack::B2FIter::next() {
SkCanvas.cpp 67 The clip/matrix/proc are fields that reflect the top of the save/restore
122 // intersect clip, but don't translate it (yet)
547 // now jam our 1st clip to be bounds, and intersect the rest with that
610 SkRegion clip; local
611 clip = totalClip; // make a copy
613 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
625 const SkRegion& clip,
629 device->gainFocus(this, matrix, clip, clipStack);
725 } else { // no user bounds, so just use the clip
1017 const SkClipStack::B2FIter::Clip* clip; local
1120 const SkRegion& clip = *fMCRec->fRegion; local
1666 const SkRegion& SkCanvas::LayerIter::clip() const { return fImpl->getClip(); } function in class:SkCanvas::LayerIter
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-invalid.cpp 6 template<class Clip=rasterizer_sl_clip_int> class rasterizer_scanline_aa
  /external/skia/tests/
ClipStackTest.cpp 9 // Build up a clip stack with a path, an empty clip, and a rect.
49 // Test that different state (clip type) triggers not equal.
109 const SkClipStack::B2FIter::Clip* clip = iter.next(); local
113 REPORTER_ASSERT(reporter, clip);
114 REPORTER_ASSERT(reporter, clip->fRect);
115 REPORTER_ASSERT(reporter, !clip->fPath);
116 REPORTER_ASSERT(reporter, SkRegion::kIntersect_Op == clip->fOp);
117 REPORTER_ASSERT(reporter, *clip->fRect == answer)
    [all...]
  /external/webkit/Source/WebKit/android/nav/
CachedNode.cpp 51 bool CachedNode::Clip(const WebCore::IntRect& outer, WebCore::IntRect* inner,
79 bool CachedNode::clip(const WebCore::IntRect& bounds) function in class:android::CachedNode
81 return Clip(bounds, &mBounds, &mCursorRing);
CachedNode.h 95 static bool Clip(const WebCore::IntRect& outer, WebCore::IntRect* inner,
97 bool clip(const WebCore::IntRect& );
120 bool isNavable(const CachedFrame* frame, const WebCore::IntRect& clip) const {
121 return clip.intersects(bounds(frame));
  /external/skia/include/gpu/
SkGr.h 167 const SkClipStack::B2FIter::Clip* fCurr;
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageWx.cpp 135 gc->Clip(dst.x(), dst.y(), dst.width(), dst.height());
196 ctxt->clip(IntRect(dstRect.x(), dstRect.y(), dstRect.width(), dstRect.height()));
  /external/qemu/distrib/sdl-1.2.12/src/video/fbcon/
riva_mmio.h 102 * Scissor clip rectangle.
398 RivaClip *Clip;
  /external/skia/src/pdf/
SkPDFDevice.cpp 132 // intersect. If the clip stack does anything other than intersect,
233 const SkClipStack::B2FIter::Clip* prefixEntry;
234 const SkClipStack::B2FIter::Clip* iterEntry;
241 // Because of SkClipStack does internal intersection, the last clip
304 // gsState->initialEntry()->fClipStack/Region specifies the clip that has
306 // a clip to the content area. If this is a layer, then it specifies
307 // the clip in effect when the layer was created.) There's no need to
308 // reapply that clip; SKCanvas's SkDrawIter will draw anything outside the
309 // initial clip on the parent layer. (This means there's a bug if the user
310 // expands the clip and then uses any xfer mode that uses dst
    [all...]
  /external/skia/src/xml/
SkJSDisplayable.cpp 139 JS_INIT(SkDraw, Clip)

Completed in 373 milliseconds