You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
drop Skia dependency
Everything is implementede using GTK Scene Graph now. Skia is no longer needed.
This commit is contained in:
@@ -28,10 +28,10 @@ JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawRect
|
||||
/*
|
||||
* Class: android_graphics_GskCanvas
|
||||
* Method: native_drawPath
|
||||
* Signature: (JJJ)V
|
||||
* Signature: (JJII)V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawPath
|
||||
(JNIEnv *, jobject, jlong, jlong, jlong);
|
||||
(JNIEnv *, jobject, jlong, jlong, jint, jint);
|
||||
|
||||
/*
|
||||
* Class: android_graphics_GskCanvas
|
||||
@@ -68,18 +68,18 @@ JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1restore
|
||||
/*
|
||||
* Class: android_graphics_GskCanvas
|
||||
* Method: native_drawLine
|
||||
* Signature: (JFFFFJ)V
|
||||
* Signature: (JFFFFIF)V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawLine
|
||||
(JNIEnv *, jobject, jlong, jfloat, jfloat, jfloat, jfloat, jlong);
|
||||
(JNIEnv *, jobject, jlong, jfloat, jfloat, jfloat, jfloat, jint, jfloat);
|
||||
|
||||
/*
|
||||
* Class: android_graphics_GskCanvas
|
||||
* Method: native_drawText
|
||||
* Signature: (JLjava/lang/String;FFJJ)V
|
||||
* Signature: (JLjava/lang/String;FFIF)V
|
||||
*/
|
||||
JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawText
|
||||
(JNIEnv *, jobject, jlong, jstring, jfloat, jfloat, jlong, jlong);
|
||||
(JNIEnv *, jobject, jlong, jstring, jfloat, jfloat, jint, jfloat);
|
||||
|
||||
/*
|
||||
* Class: android_graphics_GskCanvas
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
/* DO NOT EDIT THIS FILE - it is machine generated */
|
||||
#include <jni.h>
|
||||
/* Header for class android_graphics_Typeface */
|
||||
|
||||
#ifndef _Included_android_graphics_Typeface
|
||||
#define _Included_android_graphics_Typeface
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
#undef android_graphics_Typeface_NORMAL
|
||||
#define android_graphics_Typeface_NORMAL 0L
|
||||
#undef android_graphics_Typeface_BOLD
|
||||
#define android_graphics_Typeface_BOLD 1L
|
||||
#undef android_graphics_Typeface_ITALIC
|
||||
#define android_graphics_Typeface_ITALIC 2L
|
||||
#undef android_graphics_Typeface_BOLD_ITALIC
|
||||
#define android_graphics_Typeface_BOLD_ITALIC 3L
|
||||
/*
|
||||
* Class: android_graphics_Typeface
|
||||
* Method: native_create
|
||||
* Signature: (Ljava/lang/CharSequence;I)J
|
||||
*/
|
||||
JNIEXPORT jlong JNICALL Java_android_graphics_Typeface_native_1create
|
||||
(JNIEnv *, jclass, jobject, jint);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
Reference in New Issue
Block a user