Package org.robolectric.shadows
Class ShadowNativeBaseRecordingCanvas
java.lang.Object
org.robolectric.shadows.ShadowCanvas
org.robolectric.shadows.ShadowNativeBaseCanvas
org.robolectric.shadows.ShadowNativeCanvas
org.robolectric.shadows.ShadowNativeBaseRecordingCanvas
- Direct Known Subclasses:
ShadowNativeRecordingCanvas
@Implements(value=android.graphics.BaseRecordingCanvas.class,
minSdk=29,
shadowPicker=Picker.class,
callNativeMethodsByDefault=true,
isInAndroidSdk=false)
public class ShadowNativeBaseRecordingCanvas
extends ShadowNativeCanvas
Shadow for
BaseRecordingCanvas
that is backed by native code-
Nested Class Summary
Nested classes/interfaces inherited from class org.robolectric.shadows.ShadowCanvas
ShadowCanvas.ArcPaintHistoryEvent, ShadowCanvas.CirclePaintHistoryEvent, ShadowCanvas.LinePaintHistoryEvent, ShadowCanvas.OvalPaintHistoryEvent, ShadowCanvas.RectPaintHistoryEvent, ShadowCanvas.RoundRectPaintHistoryEvent, ShadowCanvas.TextHistoryEvent
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected static void
nDrawArc
(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) protected static void
nDrawBitmap
(long nativeCanvas, int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, long nativePaintOrZero) protected static void
nDrawBitmap
(long nativeCanvas, long bitmapHandle, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) protected static void
nDrawBitmap
(long nativeCanvas, long bitmapHandle, float left, float top, long nativePaintOrZero, int canvasDensity, int screenDensity, int bitmapDensity) protected static void
nDrawBitmapMatrix
(long nativeCanvas, long bitmapHandle, long nativeMatrix, long nativePaint) protected static void
nDrawBitmapMesh
(long nativeCanvas, long bitmapHandle, int meshWidth, int meshHeight, float[] verts, int vertOffset, int[] colors, int colorOffset, long nativePaint) protected static void
nDrawCircle
(long nativeCanvas, float cx, float cy, float radius, long nativePaint) protected static void
nDrawColor
(long nativeCanvas, int color, int mode) protected static void
nDrawColor
(long nativeCanvas, long nativeColorSpace, long color, int mode) protected static void
nDrawDoubleRoundRect
(long nativeCanvas, float outerLeft, float outerTop, float outerRight, float outerBottom, float[] outerRadii, float innerLeft, float innerTop, float innerRight, float innerBottom, float[] innerRadii, long nativePaint) protected static void
nDrawDoubleRoundRect
(long nativeCanvas, float outerLeft, float outerTop, float outerRight, float outerBottom, float outerRx, float outerRy, float innerLeft, float innerTop, float innerRight, float innerBottom, float innerRx, float innerRy, long nativePaint) protected static void
nDrawGlyphs
(long nativeCanvas, int[] glyphIds, float[] positions, int glyphIdStart, int positionStart, int glyphCount, long nativeFont, long nativePaint) protected static void
nDrawLine
(long nativeCanvas, float startX, float startY, float stopX, float stopY, long nativePaint) protected static void
nDrawLines
(long canvasHandle, float[] pts, int offset, int count, long paintHandle) protected static void
nDrawNinePatch
(long nativeCanvas, long nativeBitmap, long ninePatch, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) protected static void
nDrawOval
(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) protected static void
nDrawPaint
(long nativeCanvas, long nativePaint) protected static void
nDrawPath
(long nativeCanvas, long nativePath, long nativePaint) protected static void
nDrawPoint
(long canvasHandle, float x, float y, long paintHandle) protected static void
nDrawPoints
(long canvasHandle, float[] pts, int offset, int count, long paintHandle) protected static void
nDrawRect
(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) protected static void
nDrawRegion
(long nativeCanvas, long nativeRegion, long nativePaint) protected static void
nDrawRoundRect
(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) protected static void
nDrawText
(long nativeCanvas, char[] text, int index, int count, float x, float y, int flags, long nativePaint) protected static void
nDrawText
(long nativeCanvas, char[] text, int index, int count, float x, float y, int flags, long nativePaint, long nativeTypeface) protected static void
nDrawText
(long nativeCanvas, String text, int start, int end, float x, float y, int flags, long nativePaint) protected static void
nDrawText
(long nativeCanvas, String text, int start, int end, float x, float y, int flags, long nativePaint, long nativeTypeface) protected static void
nDrawTextOnPath
(long nativeCanvas, char[] text, int index, int count, long nativePath, float hOffset, float vOffset, int bidiFlags, long nativePaint) protected static void
nDrawTextOnPath
(long nativeCanvas, char[] text, int index, int count, long nativePath, float hOffset, float vOffset, int bidiFlags, long nativePaint, long nativeTypeface) protected static void
nDrawTextOnPath
(long nativeCanvas, String text, long nativePath, float hOffset, float vOffset, int flags, long nativePaint) protected static void
nDrawTextOnPath
(long nativeCanvas, String text, long nativePath, float hOffset, float vOffset, int flags, long nativePaint, long nativeTypeface) protected static void
nDrawTextRun
(long nativeCanvas, char[] text, int start, int count, int contextStart, int contextCount, float x, float y, boolean isRtl, long nativePaint, long nativeTypefaceOrPrecomputedText) The signature of this method is the same from SDK levels O and above, but the last native pointer changed from a Typeface pointer to a MeasuredParagraph pointer in P.protected static void
nDrawTextRun
(long nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, long nativePaint) protected static void
nDrawTextRun
(long nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, long nativePaint, long nativeTypeface) protected static void
nDrawVertices
(long nativeCanvas, int mode, int n, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, long nativePaint) protected static void
nPunchHole
(long renderer, float left, float top, float right, float bottom, float rx, float ry) protected static void
nPunchHole
(long renderer, float left, float top, float right, float bottom, float rx, float ry, float alpha) Methods inherited from class org.robolectric.shadows.ShadowNativeCanvas
nClipPath, nClipRect, nConcat, nFreeCaches, nFreeTextLayoutCaches, nGetClipBounds, nGetHeight, nGetMatrix, nGetNativeFinalizer, nGetSaveCount, nGetWidth, nInitRaster, nInitRaster, nIsOpaque, nQuickReject, nQuickReject, nRestore, nRestoreToCount, nRestoreUnclippedLayer, nRotate, nSave, nSaveLayer, nSaveLayer, nSaveLayerAlpha, nSaveLayerAlpha, nSaveUnclippedLayer, nScale, nSetBitmap, nSetBitmap, nSetCompatibilityVersion, nSetDrawFilter, nSetHighContrastText, nSetMatrix, nSkew, nTranslate, saveUnclippedLayer
Methods inherited from class org.robolectric.shadows.ShadowNativeBaseCanvas
appendDescription, getArcPaintHistoryCount, getCirclePaintHistoryCount, getDescription, getDrawnArc, getDrawnCircle, getDrawnLine, getDrawnOval, getDrawnPaint, getDrawnPath, getDrawnPathPaint, getDrawnRect, getDrawnRoundRect, getDrawnTextEvent, getLastDrawnRect, getLastDrawnRoundRect, getLinePaintHistoryCount, getOvalPaintHistoryCount, getPathPaintHistoryCount, getRectPaintHistoryCount, getRoundRectPaintHistoryCount, getTextHistoryCount, hasDrawnCircle, hasDrawnPath, nDrawBitmap, nDrawBitmap, nDrawBitmapMatrix, nDrawBitmapMesh, resetCanvasHistory, setHeight, setWidth
Methods inherited from class org.robolectric.shadows.ShadowCanvas
visualize
-
Constructor Details
-
ShadowNativeBaseRecordingCanvas
public ShadowNativeBaseRecordingCanvas()
-
-
Method Details
-
nDrawBitmap
@Implementation(maxSdk=34) protected static void nDrawBitmap(long nativeCanvas, long bitmapHandle, float left, float top, long nativePaintOrZero, int canvasDensity, int screenDensity, int bitmapDensity) -
nDrawBitmap
@Implementation(maxSdk=34) protected static void nDrawBitmap(long nativeCanvas, long bitmapHandle, float srcLeft, float srcTop, float srcRight, float srcBottom, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) -
nDrawBitmap
@Implementation(maxSdk=34) protected static void nDrawBitmap(long nativeCanvas, int[] colors, int offset, int stride, float x, float y, int width, int height, boolean hasAlpha, long nativePaintOrZero) -
nDrawColor
-
nDrawColor
@Implementation(maxSdk=34) protected static void nDrawColor(long nativeCanvas, long nativeColorSpace, long color, int mode) -
nDrawPaint
-
nDrawPoint
@Implementation(maxSdk=34) protected static void nDrawPoint(long canvasHandle, float x, float y, long paintHandle) -
nDrawPoints
@Implementation(maxSdk=34) protected static void nDrawPoints(long canvasHandle, float[] pts, int offset, int count, long paintHandle) -
nDrawLine
@Implementation(maxSdk=34) protected static void nDrawLine(long nativeCanvas, float startX, float startY, float stopX, float stopY, long nativePaint) -
nDrawLines
@Implementation(maxSdk=34) protected static void nDrawLines(long canvasHandle, float[] pts, int offset, int count, long paintHandle) -
nDrawRect
@Implementation(maxSdk=34) protected static void nDrawRect(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) -
nDrawOval
@Implementation(maxSdk=34) protected static void nDrawOval(long nativeCanvas, float left, float top, float right, float bottom, long nativePaint) -
nDrawCircle
@Implementation(maxSdk=34) protected static void nDrawCircle(long nativeCanvas, float cx, float cy, float radius, long nativePaint) -
nDrawArc
@Implementation(maxSdk=34) protected static void nDrawArc(long nativeCanvas, float left, float top, float right, float bottom, float startAngle, float sweep, boolean useCenter, long nativePaint) -
nDrawRoundRect
@Implementation(maxSdk=34) protected static void nDrawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) -
nDrawDoubleRoundRect
@Implementation(maxSdk=34) protected static void nDrawDoubleRoundRect(long nativeCanvas, float outerLeft, float outerTop, float outerRight, float outerBottom, float outerRx, float outerRy, float innerLeft, float innerTop, float innerRight, float innerBottom, float innerRx, float innerRy, long nativePaint) -
nDrawDoubleRoundRect
@Implementation(maxSdk=34) protected static void nDrawDoubleRoundRect(long nativeCanvas, float outerLeft, float outerTop, float outerRight, float outerBottom, float[] outerRadii, float innerLeft, float innerTop, float innerRight, float innerBottom, float[] innerRadii, long nativePaint) -
nDrawPath
@Implementation(maxSdk=34) protected static void nDrawPath(long nativeCanvas, long nativePath, long nativePaint) -
nDrawRegion
@Implementation(maxSdk=34) protected static void nDrawRegion(long nativeCanvas, long nativeRegion, long nativePaint) -
nDrawNinePatch
@Implementation(maxSdk=34) protected static void nDrawNinePatch(long nativeCanvas, long nativeBitmap, long ninePatch, float dstLeft, float dstTop, float dstRight, float dstBottom, long nativePaintOrZero, int screenDensity, int bitmapDensity) -
nDrawBitmapMatrix
@Implementation(maxSdk=34) protected static void nDrawBitmapMatrix(long nativeCanvas, long bitmapHandle, long nativeMatrix, long nativePaint) -
nDrawBitmapMesh
@Implementation(maxSdk=34) protected static void nDrawBitmapMesh(long nativeCanvas, long bitmapHandle, int meshWidth, int meshHeight, float[] verts, int vertOffset, int[] colors, int colorOffset, long nativePaint) -
nDrawVertices
@Implementation(maxSdk=34) protected static void nDrawVertices(long nativeCanvas, int mode, int n, float[] verts, int vertOffset, float[] texs, int texOffset, int[] colors, int colorOffset, short[] indices, int indexOffset, int indexCount, long nativePaint) -
nDrawGlyphs
@Implementation(minSdk=31, maxSdk=34) protected static void nDrawGlyphs(long nativeCanvas, int[] glyphIds, float[] positions, int glyphIdStart, int positionStart, int glyphCount, long nativeFont, long nativePaint) -
nDrawText
@Implementation(maxSdk=34) protected static void nDrawText(long nativeCanvas, char[] text, int index, int count, float x, float y, int flags, long nativePaint) -
nDrawText
@Implementation(maxSdk=34) protected static void nDrawText(long nativeCanvas, String text, int start, int end, float x, float y, int flags, long nativePaint) -
nDrawText
@Implementation(minSdk=26, maxSdk=27) protected static void nDrawText(long nativeCanvas, char[] text, int index, int count, float x, float y, int flags, long nativePaint, long nativeTypeface) -
nDrawText
@Implementation(minSdk=26, maxSdk=27) protected static void nDrawText(long nativeCanvas, String text, int start, int end, float x, float y, int flags, long nativePaint, long nativeTypeface) -
nDrawTextRun
@Implementation(maxSdk=34) protected static void nDrawTextRun(long nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, long nativePaint) -
nDrawTextRun
@Implementation(minSdk=26, maxSdk=34) protected static void nDrawTextRun(long nativeCanvas, char[] text, int start, int count, int contextStart, int contextCount, float x, float y, boolean isRtl, long nativePaint, long nativeTypefaceOrPrecomputedText) The signature of this method is the same from SDK levels O and above, but the last native pointer changed from a Typeface pointer to a MeasuredParagraph pointer in P. -
nDrawTextRun
@Implementation(minSdk=26, maxSdk=27) protected static void nDrawTextRun(long nativeCanvas, String text, int start, int end, int contextStart, int contextEnd, float x, float y, boolean isRtl, long nativePaint, long nativeTypeface) -
nDrawTextOnPath
@Implementation(maxSdk=34) protected static void nDrawTextOnPath(long nativeCanvas, char[] text, int index, int count, long nativePath, float hOffset, float vOffset, int bidiFlags, long nativePaint) -
nDrawTextOnPath
@Implementation(maxSdk=34) protected static void nDrawTextOnPath(long nativeCanvas, String text, long nativePath, float hOffset, float vOffset, int flags, long nativePaint) -
nDrawTextOnPath
@Implementation(minSdk=26, maxSdk=27) protected static void nDrawTextOnPath(long nativeCanvas, char[] text, int index, int count, long nativePath, float hOffset, float vOffset, int bidiFlags, long nativePaint, long nativeTypeface) -
nDrawTextOnPath
@Implementation(minSdk=26, maxSdk=27) protected static void nDrawTextOnPath(long nativeCanvas, String text, long nativePath, float hOffset, float vOffset, int flags, long nativePaint, long nativeTypeface) -
nPunchHole
@Implementation(minSdk=31, maxSdk=33) protected static void nPunchHole(long renderer, float left, float top, float right, float bottom, float rx, float ry) -
nPunchHole
@Implementation(minSdk=34, maxSdk=34) protected static void nPunchHole(long renderer, float left, float top, float right, float bottom, float rx, float ry, float alpha)
-