Home
last modified time | relevance | path

Searched refs:nativeMatrix (Results 1 – 18 of 18) sorted by relevance

/frameworks/layoutlib/bridge/src/android/graphics/
DComposeShader_Delegate.java66 /*package*/ static long nativeCreate(long nativeMatrix, long native_shaderA, in nativeCreate() argument
69 ComposeShader_Delegate newDelegate = new ComposeShader_Delegate(nativeMatrix); in nativeCreate()
76 private ComposeShader_Delegate(long nativeMatrix) { in ComposeShader_Delegate() argument
77 super(nativeMatrix); in ComposeShader_Delegate()
DShader_Delegate.java95 protected Shader_Delegate(long nativeMatrix) { in Shader_Delegate() argument
96 setLocalMatrix(nativeMatrix); in Shader_Delegate()
99 public void setLocalMatrix(long nativeMatrix) { in setLocalMatrix() argument
100 mLocalMatrix = Matrix_Delegate.getDelegate(nativeMatrix); in setLocalMatrix()
DGradient_Delegate.java52 protected Gradient_Delegate(long nativeMatrix, long[] colors, float[] positions) { in Gradient_Delegate() argument
53 super(nativeMatrix); in Gradient_Delegate()
DSweepGradient_Delegate.java83 private SweepGradient_Delegate(long nativeMatrix, float cx, float cy, in SweepGradient_Delegate() argument
85 super(nativeMatrix, colors, positions); in SweepGradient_Delegate()
DRadialGradient_Delegate.java86 private RadialGradient_Delegate(long nativeMatrix, float x, float y, float radius, in RadialGradient_Delegate() argument
88 super(nativeMatrix, colors, positions); in RadialGradient_Delegate()
DLinearGradient_Delegate.java86 private LinearGradient_Delegate(long nativeMatrix, float x0, float y0, float x1, in LinearGradient_Delegate() argument
88 super(nativeMatrix, colors, positions); in LinearGradient_Delegate()
DBitmapShader_Delegate.java80 /*package*/ static long nativeCreate(long nativeMatrix, long bitmapHandle, in nativeCreate() argument
87 BitmapShader_Delegate newDelegate = new BitmapShader_Delegate(nativeMatrix, in nativeCreate()
/frameworks/base/graphics/java/android/graphics/
DBitmapShader.java74 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
76 return nativeCreate(nativeMatrix, mBitmap.getNativeInstance(), mTileX, mTileY, in createNativeInstance()
86 private static native long nativeCreate(long nativeMatrix, long bitmapHandle, in nativeCreate() argument
DComposeShader.java89 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
92 return nativeCreate(nativeMatrix, in createNativeInstance()
103 private static native long nativeCreate(long nativeMatrix, in nativeCreate() argument
DRuntimeShader.java111 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
112 return nativeCreateShader(mNativeInstanceRuntimeShaderBuilder, nativeMatrix, mIsOpaque); in createNativeInstance()
DSweepGradient.java136 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
137 return nativeCreate(nativeMatrix, mCx, mCy, mColorLongs, mPositions, in createNativeInstance()
DLinearGradient.java157 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
158 return nativeCreate(nativeMatrix, mX0, mY0, mX1, mY1, in createNativeInstance()
DRadialGradient.java214 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
215 return nativeCreate(nativeMatrix, mFocalX, mFocalY, mFocalRadius, mX, mY, mRadius, in createNativeInstance()
DShader.java151 protected long createNativeInstance(long nativeMatrix, boolean filterFromPaint) { in createNativeInstance() argument
DRenderNode.java1599 private static native void nGetTransformMatrix(long renderNode, long nativeMatrix); in nGetTransformMatrix() argument
1602 private static native void nGetInverseTransformMatrix(long renderNode, long nativeMatrix); in nGetInverseTransformMatrix() argument
1767 private static native boolean nSetStaticMatrix(long renderNode, long nativeMatrix); in nSetStaticMatrix() argument
DCanvas.java1446 private static native void nConcat(long nativeCanvas, long nativeMatrix);
1448 private static native void nSetMatrix(long nativeCanvas, long nativeMatrix);
1457 private static native void nGetMatrix(long nativeCanvas, long nativeMatrix);
DBaseRecordingCanvas.java706 long nativeMatrix, long nativePaint); in nDrawBitmapMatrix() argument
DBaseCanvas.java794 long nativeMatrix, long nativePaint); in nDrawBitmapMatrix() argument