Searched defs:cullRect (Results 1 - 22 of 22) sorted by path

/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DLoggingCanvas.cpp298 void LoggingCanvas::onPushCull(const SkRect& cullRect) argument
302 params->setObject("cullRect", objectForSkRect(cullRect));
303 this->SkCanvas::onPushCull(cullRect);
H A DProfilingCanvas.cpp206 void ProfilingCanvas::onPushCull(const SkRect& cullRect) argument
209 this->SkCanvas::onPushCull(cullRect);
H A DReplayingCanvas.cpp220 void ReplayingCanvas::onPushCull(const SkRect& cullRect) argument
223 this->SkCanvas::onPushCull(cullRect);
/external/chromium_org/third_party/skia/include/core/
H A DSkPicture.h138 const SkRect cullRect() const { return SkRect::MakeWH(fCullWidth, fCullHeight); } function in class:SkPicture
/external/chromium_org/third_party/skia/src/core/
H A DSkCanvas.cpp1109 void SkCanvas::onPushCull(const SkRect& cullRect) { argument
1138 void SkCanvas::pushCull(const SkRect& cullRect) { argument
1140 this->onPushCull(cullRect);
1145 this->getTotalMatrix().mapRect(&mappedCull, cullRect);
2432 SkAutoCanvasMatrixPaint acmp(this, matrix, paint, picture->cullRect());
H A DSkDraw.cpp641 SkRect cullRect = SkRect::Make(fRC->getBounds()); local
644 *fMatrix, &cullRect)) {
1061 SkRect cullRect; local
1063 if (this->computeConservativeLocalClipBounds(&cullRect)) {
1064 cullRectPtr = &cullRect;
H A DSkPicturePlayback.cpp228 const SkRect& cullRect = reader->skipT<SkRect>(); local
230 if (offsetToRestore && canvas->quickReject(cullRect)) {
233 canvas->pushCull(cullRect);
H A DSkPictureRecord.cpp1394 void SkPictureRecord::onPushCull(const SkRect& cullRect) { argument
1400 this->addRect(cullRect);
/external/chromium_org/third_party/skia/src/effects/
H A DSkDashPathEffect.cpp39 SkStrokeRec* rec, const SkRect* cullRect) const {
40 return SkDashPath::FilterDashPath(dst, src, rec, cullRect, fIntervals, fCount,
59 const SkMatrix& ctm, const SkRect* cullRect,
61 if (NULL == cullRect) {
73 SkRect bounds = *cullRect;
76 // cullRect is in device space while pts are in the local coordinate system
162 const SkRect* cullRect) const {
197 if (!cull_line(pts, rec, matrix, cullRect, fIntervalLength)) {
58 cull_line(SkPoint* pts, const SkStrokeRec& rec, const SkMatrix& ctm, const SkRect* cullRect, const SkScalar intervalLength) argument
/external/chromium_org/third_party/skia/src/gpu/
H A DSkGpuDevice.cpp735 const SkRect* cullRect = NULL; // TODO: what is our bounds? local
738 cullRect)) {
/external/chromium_org/third_party/skia/src/utils/
H A DSkDashPath.cpp93 const SkRect* cullRect, SkScalar intervalLength,
95 if (NULL == cullRect) {
104 SkRect bounds = *cullRect;
222 const SkRect* cullRect, const SkScalar aIntervals[],
237 if (cull_path(src, *rec, cullRect, intervalLength, &cullPathStorage)) {
321 const SkRect* cullRect, const SkPathEffect::DashInfo& info) {
327 return FilterDashPath(dst, src, rec, cullRect, info.fIntervals, info.fCount, initialDashLength,
92 cull_path(const SkPath& srcPath, const SkStrokeRec& rec, const SkRect* cullRect, SkScalar intervalLength, SkPath* dstPath) argument
221 FilterDashPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect, const SkScalar aIntervals[], int32_t count, SkScalar initialDashLength, int32_t initialDashIndex, SkScalar intervalLength) argument
320 FilterDashPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect, const SkPathEffect::DashInfo& info) argument
H A DSkDumpCanvas.cpp295 void SkDumpCanvas::onPushCull(const SkRect& cullRect) { argument
297 toString(cullRect, &str);
438 picture->cullRect().fLeft, picture->cullRect().fTop,
439 picture->cullRect().fRight, picture->cullRect().fBottom);
444 picture->cullRect().fLeft, picture->cullRect().fTop,
445 picture->cullRect().fRight, picture->cullRect()
[all...]
/external/chromium_org/third_party/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp577 void SkDebugCanvas::onPushCull(const SkRect& cullRect) { argument
578 this->addDrawCommand(new SkPushCullCommand(cullRect));
H A DSkDrawCommand.cpp527 picture->cullRect().fLeft, picture->cullRect().fTop,
528 picture->cullRect().fRight, picture->cullRect().fBottom);
546 xlate_and_scale_to_bounds(canvas, fPicture->cullRect());
1002 SkPushCullCommand::SkPushCullCommand(const SkRect& cullRect) argument
1004 , fCullRect(cullRect) {
1005 fInfo.push(SkObjectParser::RectToString(cullRect));
/external/skia/src/core/
H A DSkCanvas.cpp1092 void SkCanvas::onPushCull(const SkRect& cullRect) { argument
1121 void SkCanvas::pushCull(const SkRect& cullRect) { argument
1123 this->onPushCull(cullRect);
1128 this->getTotalMatrix().mapRect(&mappedCull, cullRect);
H A DSkDraw.cpp640 SkRect cullRect = SkRect::Make(fRC->getBounds()); local
643 *fMatrix, &cullRect)) {
1055 SkRect cullRect; local
1057 if (this->computeConservativeLocalClipBounds(&cullRect)) {
1058 cullRectPtr = &cullRect;
H A DSkPictureRecord.cpp1537 void SkPictureRecord::onPushCull(const SkRect& cullRect) { argument
1543 this->addRect(cullRect);
/external/skia/src/gpu/
H A DSkGpuDevice.cpp766 const SkRect* cullRect = NULL; // TODO: what is our bounds? local
769 cullRect)) {
/external/skia/src/utils/
H A DSkDashPath.cpp93 const SkRect* cullRect, SkScalar intervalLength,
95 if (NULL == cullRect) {
104 SkRect bounds = *cullRect;
221 const SkRect* cullRect, const SkScalar aIntervals[],
236 if (cull_path(src, *rec, cullRect, intervalLength, &cullPathStorage)) {
320 const SkRect* cullRect, const SkPathEffect::DashInfo& info) {
326 return FilterDashPath(dst, src, rec, cullRect, info.fIntervals, info.fCount, initialDashLength,
92 cull_path(const SkPath& srcPath, const SkStrokeRec& rec, const SkRect* cullRect, SkScalar intervalLength, SkPath* dstPath) argument
220 FilterDashPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect, const SkScalar aIntervals[], int32_t count, SkScalar initialDashLength, int32_t initialDashIndex, SkScalar intervalLength) argument
319 FilterDashPath(SkPath* dst, const SkPath& src, SkStrokeRec* rec, const SkRect* cullRect, const SkPathEffect::DashInfo& info) argument
H A DSkDumpCanvas.cpp293 void SkDumpCanvas::onPushCull(const SkRect& cullRect) { argument
295 toString(cullRect, &str);
/external/skia/src/utils/debugger/
H A DSkDebugCanvas.cpp580 void SkDebugCanvas::onPushCull(const SkRect& cullRect) { argument
581 this->addDrawCommand(new SkPushCullCommand(cullRect));
H A DSkDrawCommand.cpp947 SkPushCullCommand::SkPushCullCommand(const SkRect& cullRect) argument
949 , fCullRect(cullRect) {
950 fInfo.push(SkObjectParser::RectToString(cullRect));

Completed in 6824 milliseconds