Searched defs:saveLayer (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/libs/hwui/
H A DOpenGLRenderer.h155 virtual int saveLayer(float left, float top, float right, float bottom, function in class:android::uirenderer::OpenGLRenderer
157 return saveLayer(left, top, right, bottom, paint, flags, nullptr);
160 // Specialized saveLayer implementation, which will pass the convexMask to an FBO layer, if
162 int saveLayer(float left, float top, float right, float bottom,
741 // List of rectangles to clear after saveLayer() is invoked
H A DDisplayListCanvas.cpp130 int DisplayListCanvas::saveLayer(float left, float top, float right, float bottom, function in class:android::uirenderer::DisplayListCanvas
H A DRecordingCanvas.cpp118 int RecordingCanvas::saveLayer(float left, float top, float right, float bottom, function in class:android::uirenderer::RecordingCanvas
H A DSkiaCanvas.cpp90 virtual int saveLayer(float left, float top, float right, float bottom,
343 int SkiaCanvas::saveLayer(float left, float top, float right, float bottom, function in class:android::SkiaCanvas
348 int count = mCanvas->saveLayer(rec);
360 return this->saveLayer(left, top, right, bottom, alphaPaint.getMaybeNull(),
H A DOpenGLRenderer.cpp472 int OpenGLRenderer::saveLayer(float left, float top, float right, float bottom, function in class:android::uirenderer::OpenGLRenderer
837 * by saveLayer's restore
1145 // (Note: saveLayer/restore use colorFilter and alpha, so we just save restore everything)
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java55 public int saveLayer(RectF bounds, Paint paint, int saveFlags) { method in class:NopCanvas
60 public int saveLayer(RectF bounds, Paint paint) { method in class:NopCanvas
65 public int saveLayer(float left, float top, float right, float bottom, Paint paint, method in class:NopCanvas
71 public int saveLayer(float left, float top, float right, float bottom, Paint paint) { method in class:NopCanvas
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DGcSnapshot.java56 * Handling of layers (created with {@link Canvas#saveLayer(RectF, Paint, int)}) is handled through
75 /** a local layer created with {@link Canvas#saveLayer(RectF, Paint, int)}.
237 * This is the equivalent of {@link Canvas#saveLayer(RectF, Paint, int)}
245 * @see Canvas#saveLayer(RectF, Paint, int)
247 public GcSnapshot saveLayer(RectF layerBounds, Paint_Delegate paint, int flags) { method in class:GcSnapshot
579 // of saveLayer(), but that doesn't mean there's no layer.
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp92 static jint saveLayer(JNIEnv* env, jobject, jlong canvasHandle, jfloat l, jfloat t, function in namespace:android::CanvasJNI
96 return static_cast<jint>(get_canvas(canvasHandle)->saveLayer(l, t, r, b, paint, flags));
584 {"native_saveLayer","!(JFFFFJI)I", (void*) CanvasJNI::saveLayer},
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java217 return canvasDelegate.saveLayer(new RectF(l, t, r, b),
1019 * layers involved (see {@link #saveLayer(RectF, Paint_Delegate, int)}.
1039 * layers involved (see {@link #saveLayer(RectF, Paint_Delegate, int)}.
1114 return saveLayer(rect, paint, saveFlags);
1117 private int saveLayer(RectF rect, Paint_Delegate paint, int saveFlags) { method in class:Canvas_Delegate
1121 mSnapshot = mSnapshot.saveLayer(rect, paint, saveFlags);
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java346 * omit this flag for any call to <code>saveLayer()</code> and
356 * call to <code>saveLayer()</code> and <code>saveLayerAlpha()</code>
425 public int saveLayer(@Nullable RectF bounds, @Nullable Paint paint, @Saveflags int saveFlags) { method in class:Canvas
429 return saveLayer(bounds.left, bounds.top, bounds.right, bounds.bottom, paint, saveFlags);
433 * Convenience for saveLayer(bounds, paint, {@link #ALL_SAVE_FLAG})
435 public int saveLayer(@Nullable RectF bounds, @Nullable Paint paint) { method in class:Canvas
436 return saveLayer(bounds, paint, ALL_SAVE_FLAG);
440 * Helper version of saveLayer() that takes 4 values rather than a RectF.
442 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint, method in class:Canvas
450 * Convenience for saveLayer(lef
452 public int saveLayer(float left, float top, float right, float bottom, @Nullable Paint paint) { method in class:Canvas
[all...]

Completed in 2955 milliseconds