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

  /external/skia/legacy/include/core/
SkClipStack.h 51 struct Clip {
52 Clip() : fRect(NULL), fPath(NULL), fOp(SkRegion::kIntersect_Op) {}
53 friend bool operator==(const Clip& a, const Clip& b);
54 friend bool operator!=(const Clip& a, const Clip& b);
55 const SkRect* fRect; // if non-null, this is a rect clip
56 const SkPath* fPath; // if non-null, this is a path clip
62 * Return the clip for this element in the iterator. If next() returns
63 * NULL, then the iterator is done. The type of clip is determined b
    [all...]
  /external/skia/legacy/src/animator/
SkDrawClip.h 21 DECLARE_DRAW_MEMBER_INFO(Clip);
SkDisplayType.cpp 109 CASE_DRAW_NEW(Clip);
264 CASE_GET_DRAW_INFO(Clip);
431 DRAW_NAME("clip", SkType_Clip),
  /external/skia/src/animator/
SkDrawClip.h 21 DECLARE_DRAW_MEMBER_INFO(Clip);
SkDisplayType.cpp 109 CASE_DRAW_NEW(Clip);
264 CASE_GET_DRAW_INFO(Clip);
431 DRAW_NAME("clip", SkType_Clip),
  /external/skia/legacy/src/core/
SkClipStack.cpp 63 * Returns true if this Rec can be intersected in place with a new clip
196 bool operator==(const SkClipStack::B2FIter::Clip& a,
197 const SkClipStack::B2FIter::Clip& b) {
205 bool operator!=(const SkClipStack::B2FIter::Clip& a,
206 const SkClipStack::B2FIter::Clip& b) {
214 const SkClipStack::B2FIter::Clip* SkClipStack::B2FIter::next() {
SkCanvas.cpp 60 The clip/matrix/proc are fields that reflect the top of the save/restore
115 // intersect clip, but don't translate it (yet)
550 // now jam our 1st clip to be bounds, and intersect the rest with that
625 SkRasterClip clip(totalClip);
627 layer->updateMC(totalMatrix, clip, fClipStack, &clip);
639 const SkRegion& clip,
643 device->gainFocus(this, matrix, clip, clipStack);
733 } else { // no user bounds, so just use the clip
739 // early exit if the clip is now empt
1059 SkRasterClip clip; local
1074 SkRasterClip clip; local
1135 const SkClipStack::B2FIter::Clip* clip; local
1259 const SkRasterClip& clip = *fMCRec->fRasterClip; local
1978 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/webkit/Source/WebCore/platform/graphics/android/context/
GraphicsOperation.h 249 class Clip : public Operation {
251 Clip(const FloatRect& rect) : m_rect(rect) {}
253 return context->clip(m_rect);
272 return context->clip(m_path);
PlatformGraphicsContextRecording.cpp 53 // clip operations below. Chosen empirically.
383 // if other opaque operations will cover the current one, clip that area out
384 // (and restore the clip immediately after drawing)
438 SkRect clip; local
439 if (!canvas->getClipBounds(&clip)) {
440 ALOGW("Empty clip!");
445 WebCore::IntRect iclip = enclosingIntRect(clip);
712 clip(path);
715 bool PlatformGraphicsContextRecording::clip(const FloatRect& rect) function in class:WebCore::PlatformGraphicsContextRecording
718 appendStateOperation(NEW_OP(Clip)(rect))
722 bool PlatformGraphicsContextRecording::clip(const Path& path) function in class:WebCore::PlatformGraphicsContextRecording
    [all...]
  /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/libyuv/files/source/
row_common.cc 441 static __inline uint32 Clip(int32 val) {
453 uint32 b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
454 uint32 g = Clip(static_cast<int32>((u * UG + v * VG) - (BG) + y1) >> 6);
455 uint32 r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
465 *b = Clip(static_cast<int32>((u * UB + v * VB) - (BB) + y1) >> 6);
466 *g = Clip(static_cast<int32>((u * UG + v * VG) - (BG) + y1) >> 6);
467 *r = Clip(static_cast<int32>((u * UR + v * VR) - (BR) + y1) >> 6);
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
riva_mmio.h 102 * Scissor clip rectangle.
398 RivaClip *Clip;
  /external/skia/legacy/src/xml/
SkJSDisplayable.cpp 131 JS_INIT(SkDraw, Clip)
  /external/skia/src/xml/
SkJSDisplayable.cpp 131 JS_INIT(SkDraw, Clip)

Completed in 631 milliseconds