diff options
author | Andrew Haley <aph@redhat.com> | 2008-11-05 14:19:06 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2008-11-05 14:19:06 +0000 |
commit | 57d891b40a8e827735b555d6c178ba7e1e409554 (patch) | |
tree | eb0bac86065f33d2904121ba06374dc762ee7752 /libjava/classpath/include | |
parent | f158188388fb801ce7c328daf1eecd693e27e5e8 (diff) | |
download | gcc-57d891b40a8e827735b555d6c178ba7e1e409554.zip gcc-57d891b40a8e827735b555d6c178ba7e1e409554.tar.gz gcc-57d891b40a8e827735b555d6c178ba7e1e409554.tar.bz2 |
FreetypeGlyphVector.java (getKerning): Return result in a float[], not a Point2D.
2008-11-05 Andrew Haley <aph@redhat.com>
* gnu/java/awt/peer/gtk/FreetypeGlyphVector.java (getKerning):
Return result in a float[], not a Point2D.
(performDefaultLayout): Call getKerning with a float[].
* native/jni/gtk-peer/gnu_java_awt_peer_gtk_FreetypeGlyphVector.c
(getKerning): Return result in a float[], not a Point2D.
From-SVN: r141610
Diffstat (limited to 'libjava/classpath/include')
-rw-r--r-- | libjava/classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h b/libjava/classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h index ac3cda3..cb424f4 100644 --- a/libjava/classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h +++ b/libjava/classpath/include/gnu_java_awt_peer_gtk_FreetypeGlyphVector.h @@ -13,7 +13,7 @@ extern "C" JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_dispose (JNIEnv *env, jobject, jlongArray); JNIEXPORT jlong JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getNativeFontPointer (JNIEnv *env, jobject, jint); JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getGlyphs (JNIEnv *env, jobject, jintArray, jintArray, jlongArray); -JNIEXPORT jobject JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getKerning (JNIEnv *env, jobject, jint, jint, jlong); +JNIEXPORT void JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getKerning (JNIEnv *env, jobject, jint, jint, jlong, jfloatArray); JNIEXPORT jdoubleArray JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getMetricsNative (JNIEnv *env, jobject, jint, jlong); JNIEXPORT jobject JNICALL Java_gnu_java_awt_peer_gtk_FreetypeGlyphVector_getGlyphOutlineNative (JNIEnv *env, jobject, jint, jlong); |