GskCanvas: implement drawRect

This commit is contained in:
Mis012
2024-04-07 21:49:40 +02:00
parent 677ff43a20
commit b229d83ad8
3 changed files with 23 additions and 1 deletions

View File

@@ -15,6 +15,14 @@ extern "C" {
JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawBitmap
(JNIEnv *, jobject, jlong, jlong, jint, jint, jint, jint, jint);
/*
* Class: android_graphics_GskCanvas
* Method: native_drawRect
* Signature: (JFFFFI)V
*/
JNIEXPORT void JNICALL Java_android_graphics_GskCanvas_native_1drawRect
(JNIEnv *, jobject, jlong, jfloat, jfloat, jfloat, jfloat, jint);
#ifdef __cplusplus
}
#endif