Searched defs:saveLayerAlpha (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/libs/hwui/
H A DSkiaCanvas.cpp65 virtual int saveLayerAlpha(float left, float top, float right, float bottom,
286 int SkiaCanvas::saveLayerAlpha(float left, float top, float right, float bottom, function in class:android::SkiaCanvas
289 int count = mCanvas->saveLayerAlpha(&bounds, alpha, flags | SkCanvas::kMatrixClip_SaveFlag);
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp88 static jint saveLayerAlpha(JNIEnv* env, jobject, jlong canvasHandle, jfloat l, jfloat t, function in namespace:android::CanvasJNI
91 return static_cast<jint>(get_canvas(canvasHandle)->saveLayerAlpha(l, t, r, b, alpha, flags));
677 {"native_saveLayerAlpha","(JFFFFII)I", (void*) CanvasJNI::saveLayerAlpha},
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java365 * <code>saveLayerAlpha()</code> variants. Not passing this flag generally
374 * call to <code>saveLayer()</code> and <code>saveLayerAlpha()</code>
502 public int saveLayerAlpha(@Nullable RectF bounds, int alpha, @Saveflags int saveFlags) { method in class:Canvas
506 return saveLayerAlpha(bounds.left, bounds.top, bounds.right, bounds.bottom, alpha, saveFlags);
510 * Convenience for saveLayerAlpha(bounds, alpha, {@link #ALL_SAVE_FLAG})
512 public int saveLayerAlpha(@Nullable RectF bounds, int alpha) { method in class:Canvas
513 return saveLayerAlpha(bounds, alpha, ALL_SAVE_FLAG);
517 * Helper for saveLayerAlpha() that takes 4 values instead of a RectF.
519 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha, method in class:Canvas
527 * Helper for saveLayerAlpha(lef
529 public int saveLayerAlpha(float left, float top, float right, float bottom, int alpha) { method in class:Canvas
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DCanvas_Delegate.java223 return canvasDelegate.saveLayerAlpha(new RectF(l, t, r, b), alpha, layerFlags);
1022 private int saveLayerAlpha(RectF rect, int alpha, int saveFlags) { method in class:Canvas_Delegate

Completed in 67 milliseconds