/external/chromium_org/third_party/skia/src/core/ |
SkBBoxHierarchyRecord.cpp | 34 int SkBBoxHierarchyRecord::saveLayer(const SkRect* bounds, const SkPaint* paint, 37 return INHERITED::saveLayer(bounds, paint, flags);
|
SkCanvas.cpp | 817 int SkCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 880 return this->saveLayer(bounds, NULL, flags); 884 return this->saveLayer(bounds, &tmpPaint, flags); [all...] |
/external/skia/src/core/ |
SkBBoxHierarchyRecord.cpp | 34 int SkBBoxHierarchyRecord::saveLayer(const SkRect* bounds, const SkPaint* paint, 37 return INHERITED::saveLayer(bounds, paint, flags);
|
/external/chromium_org/third_party/skia/src/utils/ |
SkProxyCanvas.cpp | 28 int SkProxyCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 30 return fProxy->saveLayer(bounds, paint, flags);
|
SkLuaCanvas.cpp | 94 int SkLuaCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 96 AUTO_LUA("saveLayer");
|
SkNWayCanvas.cpp | 74 int SkNWayCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 78 iter->saveLayer(bounds, paint, flags); 80 return this->INHERITED::saveLayer(bounds, paint, flags);
|
SkDumpCanvas.cpp | 206 int SkDumpCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 209 str.printf("saveLayer(0x%X)", flags); 223 return this->INHERITED::saveLayer(bounds, paint, flags);
|
SkDeferredCanvas.cpp | 716 int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 718 this->drawingCanvas()->saveLayer(bounds, paint, flags); [all...] |
/external/skia/src/utils/ |
SkProxyCanvas.cpp | 28 int SkProxyCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 30 return fProxy->saveLayer(bounds, paint, flags);
|
SkLuaCanvas.cpp | 94 int SkLuaCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 96 AUTO_LUA("saveLayer");
|
SkNWayCanvas.cpp | 74 int SkNWayCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 78 iter->saveLayer(bounds, paint, flags); 80 return this->INHERITED::saveLayer(bounds, paint, flags);
|
SkDumpCanvas.cpp | 206 int SkDumpCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 209 str.printf("saveLayer(0x%X)", flags); 223 return this->INHERITED::saveLayer(bounds, paint, flags);
|
SkDeferredCanvas.cpp | 716 int SkDeferredCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, 718 this->drawingCanvas()->saveLayer(bounds, paint, flags); [all...] |
/external/chromium_org/skia/ext/ |
analysis_canvas.cc | 368 int AnalysisCanvas::saveLayer(const SkRect* bounds,
|
/frameworks/base/libs/hwui/ |
DisplayListRenderer.cpp | 183 int DisplayListRenderer::saveLayer(float left, float top, float right, float bottom,
|
OpenGLRenderer.h | 225 ANDROID_API int saveLayer(float left, float top, float right, float bottom, 229 return saveLayer(left, top, right, bottom, paint ? paint->getAlpha() : 255, mode, flags); 233 return saveLayer(left, top, right, bottom, alpha, SkXfermode::kSrcOver_Mode, flags); 235 virtual int saveLayer(float left, float top, float right, float bottom, [all...] |
/external/skia/tools/ |
filtermain.cpp | 51 // where the saveLayer's color can be moved into the drawBitmapRect 60 SkSaveLayerCommand* saveLayer = 65 const SkPaint* saveLayerPaint = saveLayer->paint(); 68 // For this optimization we only fold the saveLayer and drawBitmapRect 69 // together if the saveLayer's draw is simple (i.e., no fancy effects) 80 // Fold the saveLayer's alpha into the drawBitmapRect and remove the saveLayer 83 SkSaveLayerCommand* saveLayer = 85 const SkPaint* saveLayerPaint = saveLayer->paint(); 94 // if the DBMR doesn't have a paint just use the saveLayer' [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Canvas_Delegate.java | 360 return canvasDelegate.saveLayer(bounds, paintDelegate, layerFlags); 378 return canvasDelegate.saveLayer(new RectF(l, t, r, b), [all...] |
/external/chromium_org/third_party/skia/src/pipe/ |
SkGPipeWrite.cpp | 238 virtual int saveLayer(const SkRect* bounds, const SkPaint*, 531 int SkGPipeCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, [all...] |
/external/skia/src/pipe/ |
SkGPipeWrite.cpp | 238 virtual int saveLayer(const SkRect* bounds, const SkPaint*, 531 int SkGPipeCanvas::saveLayer(const SkRect* bounds, const SkPaint* paint, [all...] |
/frameworks/base/core/jni/android/graphics/ |
Canvas.cpp | 138 static int saveLayer(JNIEnv* env, jobject, SkCanvas* canvas, jobject bounds, 146 return canvas->saveLayer(bounds_, paint, (SkCanvas::SaveFlags)flags); 155 return canvas->saveLayer(&bounds, paint, (SkCanvas::SaveFlags)flags); [all...] |
/frameworks/base/graphics/java/android/graphics/ |
Canvas.java | 387 public int saveLayer(RectF bounds, Paint paint, int saveFlags) { 394 * Helper version of saveLayer() that takes 4 values rather than a RectF. 396 public int saveLayer(float left, float top, float right, float bottom, Paint paint, [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
GcSnapshot.java | 54 * Handling of layers (created with {@link Canvas#saveLayer(RectF, Paint, int)}) is handled through 73 /** a local layer created with {@link Canvas#saveLayer(RectF, Paint, int)}. 235 * This is the equivalent of {@link Canvas#saveLayer(RectF, Paint, int)} 243 * @see Canvas#saveLayer(RectF, Paint, int) 245 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { 579 // of saveLayer(), but that doesn't mean there's no layer.
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CanvasTest.java | 278 mCanvas.saveLayer(rF, p, Canvas.MATRIX_SAVE_FLAG); 306 mCanvas.saveLayer(rF, p, Canvas.CLIP_SAVE_FLAG); 333 mCanvas.saveLayer(rF, p, Canvas.ALL_SAVE_FLAG); 364 mCanvas.saveLayer(10, 0, 0, 31, p, Canvas.MATRIX_SAVE_FLAG); 392 mCanvas.saveLayer(10, 0, 0, 31, p, Canvas.CLIP_SAVE_FLAG); 419 mCanvas.saveLayer(10, 0, 0, 31, p, Canvas.ALL_SAVE_FLAG); 620 mCanvas.saveLayer(new RectF(), new Paint(), Canvas.ALL_SAVE_FLAG); [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
GraphicsContext.cpp | 183 void GraphicsContext::saveLayer(const SkRect* bounds, const SkPaint* paint, SkCanvas::SaveFlags saveFlags) 190 m_canvas->saveLayer(bounds, paint, saveFlags); 495 saveLayer(&skBounds, &layerPaint, saveFlags); 497 saveLayer(0, &layerPaint, saveFlags); [all...] |