Home | History | Annotate | Download | only in context

Lines Matching refs:Clip

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;
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)
718 appendStateOperation(NEW_OP(Clip)(rect));
722 bool PlatformGraphicsContextRecording::clip(const Path& path)
942 void PlatformGraphicsContextRecording::clipState(const FloatRect& clip)
946 mCurrentMatrix->mapRect(&mapBounds, clip);
947 mRecordingStateStack.last().clip(mapBounds);
994 ALOGV("Empty bounds, but has clip so using that");
1017 ALOGV("Operation bounds=" FLOAT_RECT_FORMAT " clipped out by clip=" FLOAT_RECT_FORMAT,
1039 ALOGV("Operation opaque area=" FLOAT_RECT_FORMAT " clipped out by clip=" FLOAT_RECT_FORMAT,