/frameworks/base/graphics/java/android/graphics/ |
ComposeShader.java | 60 native_shader = nativePostCreate2(native_instance, shaderA.native_shader, 61 shaderB.native_shader, pdMode != null ? pdMode.nativeInt : 0); 63 native_shader = nativePostCreate1(native_instance, shaderA.native_shader, 64 shaderB.native_shader, mode != null ? mode.native_instance : 0); 82 native_shader = nativePostCreate2(native_instance, shaderA.native_shader, 83 shaderB.native_shader, mode.nativeInt); 111 private static native int nativePostCreate1(int native_shader, int native_skiaShaderA [all...] |
Shader.java | 35 public int native_shader; field in class:Shader 81 nativeSetLocalMatrix(native_instance, native_shader, 89 nativeDestructor(native_instance, native_shader); 115 private static native void nativeDestructor(int native_shader, int native_skiaShader); 116 private static native void nativeSetLocalMatrix(int native_shader,
|
SweepGradient.java | 66 native_shader = nativePostCreate1(native_instance, cx, cy, colors, positions); 84 native_shader = nativePostCreate2(native_instance, cx, cy, color0, color1); 112 private static native int nativePostCreate1(int native_shader, float cx, float cy, 114 private static native int nativePostCreate2(int native_shader, float cx, float cy,
|
BitmapShader.java | 47 native_shader = nativePostCreate(native_instance, b, tileX.nativeInt, tileY.nativeInt); 62 private static native int nativePostCreate(int native_shader, int native_bitmap,
|
LinearGradient.java | 69 native_shader = nativePostCreate1(native_instance, x0, y0, x1, y1, colors, positions, 93 native_shader = nativePostCreate2(native_instance, x0, y0, x1, y1, color0, color1, 123 private native int nativePostCreate1(int native_shader, float x0, float y0, float x1, float y1, 125 private native int nativePostCreate2(int native_shader, float x0, float y0, float x1, float y1,
|
RadialGradient.java | 69 native_shader = nativePostCreate1(native_instance, x, y, radius, colors, positions, 94 native_shader = nativePostCreate2(native_instance, x, y, radius, color0, color1, 125 private static native int nativePostCreate1(int native_shader, float x, float y, float radius, 127 private static native int nativePostCreate2(int native_shader, float x, float y, float radius,
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
Shader_Delegate.java | 79 /*package*/ static void nativeDestructor(int native_shader, int native_skiaShader) { 80 sManager.removeJavaReferenceFor(native_shader); 84 /*package*/ static void nativeSetLocalMatrix(int native_shader, int native_skiaShader, 87 Shader_Delegate shaderDelegate = sManager.getDelegate(native_shader);
|
ComposeShader_Delegate.java | 82 /*package*/ static int nativePostCreate1(int native_shader, int native_skiaShaderA, 89 /*package*/ static int nativePostCreate2(int native_shader, int native_skiaShaderA,
|
LinearGradient_Delegate.java | 76 int native_shader, float x0, float y0, float x1, float y1, 84 int native_shader, float x0, float y0, float x1, float y1,
|
RadialGradient_Delegate.java | 72 /*package*/ static int nativePostCreate1(int native_shader, float x, float y, float radius, 79 /*package*/ static int nativePostCreate2(int native_shader, float x, float y, float radius,
|
SweepGradient_Delegate.java | 66 /*package*/ static int nativePostCreate1(int native_shader, float cx, float cy, 73 /*package*/ static int nativePostCreate2(int native_shader, float cx, float cy,
|
BitmapShader_Delegate.java | 83 /*package*/ static int nativePostCreate(int native_shader, int native_bitmap,
|
/frameworks/base/core/java/android/view/ |
GLES20Canvas.java | [all...] |