Searched defs:canvasHandle (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/libs/hwui/jni/ |
D | android_graphics_Canvas.cpp | 46 static Canvas* get_canvas(jlong canvasHandle) { in get_canvas() 69 static void setBitmap(JNIEnv* env, jobject, jlong canvasHandle, jlong bitmapHandle) { in setBitmap() 77 static jboolean isOpaque(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle) { in isOpaque() 81 static jint getWidth(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle) { in getWidth() 85 static jint getHeight(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle) { in getHeight() 89 static jint save(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jint flagsHandle) { in save() 94 static jint saveLayer(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jfloat l, jfloat t, in saveLayer() 101 static jint saveLayerAlpha(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jfloat l, jfloat t, in saveLayerAlpha() 107 static jint saveUnclippedLayer(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jint l, jint t, jint r… in saveUnclippedLayer() 111 static void restoreUnclippedLayer(CRITICAL_JNI_PARAMS_COMMA jlong canvasHandle, jint saveCount, jlo… in restoreUnclippedLayer() [all …]
|
D | android_graphics_Picture.cpp | 50 static void android_graphics_Picture_draw(JNIEnv* env, jobject, jlong canvasHandle, in android_graphics_Picture_draw()
|
D | Movie.cpp | 64 static void movie_draw(JNIEnv* env, jobject movie, jlong canvasHandle, in movie_draw()
|
D | Camera.cpp | 95 static void Camera_applyToCanvas(JNIEnv* env, jobject obj, jlong canvasHandle) { in Camera_applyToCanvas()
|
/frameworks/base/graphics/java/android/graphics/ |
D | Canvas.java | 1446 private static native void nSetBitmap(long canvasHandle, long bitmapHandle); in nSetBitmap() 1454 private static native boolean nIsOpaque(long canvasHandle); in nIsOpaque() 1456 private static native int nGetWidth(long canvasHandle); in nGetWidth() 1458 private static native int nGetHeight(long canvasHandle); in nGetHeight() 1461 private static native int nSave(long canvasHandle, int saveFlags); in nSave() 1474 private static native boolean nRestore(long canvasHandle); in nRestore() 1476 private static native void nRestoreToCount(long canvasHandle, int saveCount); in nRestoreToCount() 1478 private static native int nGetSaveCount(long canvasHandle); in nGetSaveCount() 1481 private static native void nTranslate(long canvasHandle, float dx, float dy); in nTranslate() 1483 private static native void nScale(long canvasHandle, float sx, float sy); in nScale() [all …]
|
D | BaseRecordingCanvas.java | 605 private static native void nDrawPoint(long canvasHandle, float x, float y, long paintHandle); in nDrawPoint() 608 private static native void nDrawPoints(long canvasHandle, float[] pts, int offset, int count, in nDrawPoints() 616 private static native void nDrawLines(long canvasHandle, float[] pts, int offset, int count, in nDrawLines()
|
D | BaseCanvas.java | 682 private static native void nDrawPoint(long canvasHandle, float x, float y, long paintHandle); in nDrawPoint() 684 private static native void nDrawPoints(long canvasHandle, float[] pts, int offset, int count, in nDrawPoints() 690 private static native void nDrawLines(long canvasHandle, float[] pts, int offset, int count, in nDrawLines()
|