@@ -128,7 +128,7 @@ void LCMS_freeTransform(JNIEnv *env, jlong ID)
128
128
/*
129
129
* Class: sun_java2d_cmm_lcms_LCMS
130
130
* Method: createNativeTransform
131
- * Signature: ([JI )J
131
+ * Signature: ([JIIZIZLjava/lang/Object; )J
132
132
*/
133
133
JNIEXPORT jlong JNICALL Java_sun_java2d_cmm_lcms_LCMS_createNativeTransform
134
134
(JNIEnv * env , jclass cls , jlongArray profileIDs , jint renderType ,
@@ -214,11 +214,11 @@ JNIEXPORT jlong JNICALL Java_sun_java2d_cmm_lcms_LCMS_createNativeTransform
214
214
215
215
/*
216
216
* Class: sun_java2d_cmm_lcms_LCMS
217
- * Method: loadProfile
218
- * Signature: ([B,Lsun/java2d/cmm/lcms/LCMSProfile;)V
217
+ * Method: loadProfileNative
218
+ * Signature: ([BLjava/lang/Object;)J
219
219
*/
220
220
JNIEXPORT jlong JNICALL Java_sun_java2d_cmm_lcms_LCMS_loadProfileNative
221
- (JNIEnv * env , jobject obj , jbyteArray data , jobject disposerRef )
221
+ (JNIEnv * env , jclass cls , jbyteArray data , jobject disposerRef )
222
222
{
223
223
jbyte * dataArray ;
224
224
jint dataSize ;
@@ -278,10 +278,10 @@ JNIEXPORT jlong JNICALL Java_sun_java2d_cmm_lcms_LCMS_loadProfileNative
278
278
/*
279
279
* Class: sun_java2d_cmm_lcms_LCMS
280
280
* Method: getProfileDataNative
281
- * Signature: (J[B)V
281
+ * Signature: (J)[B
282
282
*/
283
283
JNIEXPORT jbyteArray JNICALL Java_sun_java2d_cmm_lcms_LCMS_getProfileDataNative
284
- (JNIEnv * env , jobject obj , jlong id )
284
+ (JNIEnv * env , jclass cls , jlong id )
285
285
{
286
286
lcmsProfile_p sProf = (lcmsProfile_p )jlong_to_ptr (id );
287
287
cmsUInt32Number pfSize = 0 ;
@@ -325,11 +325,11 @@ static cmsHPROFILE _writeCookedTag(cmsHPROFILE pfTarget, cmsTagSignature sig, jb
325
325
326
326
/*
327
327
* Class: sun_java2d_cmm_lcms_LCMS
328
- * Method: getTagData
329
- * Signature: (JI[B)V
328
+ * Method: getTagNative
329
+ * Signature: (JI)[B
330
330
*/
331
331
JNIEXPORT jbyteArray JNICALL Java_sun_java2d_cmm_lcms_LCMS_getTagNative
332
- (JNIEnv * env , jobject obj , jlong id , jint tagSig )
332
+ (JNIEnv * env , jclass cls , jlong id , jint tagSig )
333
333
{
334
334
lcmsProfile_p sProf = (lcmsProfile_p )jlong_to_ptr (id );
335
335
TagSignature_t sig ;
@@ -410,11 +410,11 @@ JNIEXPORT jbyteArray JNICALL Java_sun_java2d_cmm_lcms_LCMS_getTagNative
410
410
411
411
/*
412
412
* Class: sun_java2d_cmm_lcms_LCMS
413
- * Method: setTagData
413
+ * Method: setTagDataNative
414
414
* Signature: (JI[B)V
415
415
*/
416
416
JNIEXPORT void JNICALL Java_sun_java2d_cmm_lcms_LCMS_setTagDataNative
417
- (JNIEnv * env , jobject obj , jlong id , jint tagSig , jbyteArray data )
417
+ (JNIEnv * env , jclass cls , jlong id , jint tagSig , jbyteArray data )
418
418
{
419
419
lcmsProfile_p sProf = (lcmsProfile_p )jlong_to_ptr (id );
420
420
cmsHPROFILE pfReplace = NULL ;
@@ -510,7 +510,7 @@ void releaseILData (JNIEnv *env, void* pData, jint dataType,
510
510
* Signature: (Lsun/java2d/cmm/lcms/LCMSTransform;Lsun/java2d/cmm/lcms/LCMSImageLayout;Lsun/java2d/cmm/lcms/LCMSImageLayout;)V
511
511
*/
512
512
JNIEXPORT void JNICALL Java_sun_java2d_cmm_lcms_LCMS_colorConvert
513
- (JNIEnv * env , jclass obj , jobject trans , jobject src , jobject dst )
513
+ (JNIEnv * env , jclass cls , jobject trans , jobject src , jobject dst )
514
514
{
515
515
cmsHTRANSFORM sTrans = NULL ;
516
516
int srcDType , dstDType ;
@@ -579,50 +579,32 @@ JNIEXPORT void JNICALL Java_sun_java2d_cmm_lcms_LCMS_colorConvert
579
579
/*
580
580
* Class: sun_java2d_cmm_lcms_LCMS
581
581
* Method: getProfileID
582
- * Signature: (Ljava/awt/color/ICC_Profile;)Lsun/java2d/cmm/lcms/LCMSProfile
582
+ * Signature: (Ljava/awt/color/ICC_Profile;)Lsun/java2d/cmm/lcms/LCMSProfile;
583
583
*/
584
584
JNIEXPORT jobject JNICALL Java_sun_java2d_cmm_lcms_LCMS_getProfileID
585
585
(JNIEnv * env , jclass cls , jobject pf )
586
586
{
587
- jclass clsLcmsProfile ;
588
- jobject cmmProfile ;
589
- jfieldID fid ;
590
-
591
587
if (pf == NULL ) {
592
588
return NULL ;
593
589
}
594
-
595
590
jclass pcls = (* env )-> GetObjectClass (env , pf );
596
591
if (pcls == NULL ) {
597
592
return NULL ;
598
593
}
599
- jmethodID mid = (* env )-> GetMethodID (env , pcls , "activate" , "()V" );
594
+ jmethodID mid = (* env )-> GetMethodID (env , pcls , "cmmProfile" ,
595
+ "()Lsun/java2d/cmm/Profile;" );
600
596
if (mid == NULL ) {
601
597
return NULL ;
602
598
}
603
- (* env )-> CallVoidMethod (env , pf , mid );
599
+ jobject cmmProfile = (* env )-> CallObjectMethod (env , pf , mid );
604
600
if ((* env )-> ExceptionOccurred (env )) {
605
601
return NULL ;
606
602
}
607
-
608
- fid = (* env )-> GetFieldID (env , pcls , "cmmProfile" ,
609
- "Lsun/java2d/cmm/Profile;" );
610
- if (fid == NULL ) {
611
- return NULL ;
612
- }
613
-
614
- clsLcmsProfile = (* env )-> FindClass (env ,
615
- "sun/java2d/cmm/lcms/LCMSProfile" );
616
- if (clsLcmsProfile == NULL ) {
617
- return NULL ;
618
- }
619
-
620
- cmmProfile = (* env )-> GetObjectField (env , pf , fid );
621
-
622
- if (JNU_IsNull (env , cmmProfile )) {
603
+ jclass lcmsPCls = (* env )-> FindClass (env , "sun/java2d/cmm/lcms/LCMSProfile" );
604
+ if (lcmsPCls == NULL ) {
623
605
return NULL ;
624
606
}
625
- if ((* env )-> IsInstanceOf (env , cmmProfile , clsLcmsProfile )) {
607
+ if ((* env )-> IsInstanceOf (env , cmmProfile , lcmsPCls )) {
626
608
return cmmProfile ;
627
609
}
628
610
return NULL ;
0 commit comments