renderState = renderingIntent >= 0 ? renderingIntent : ICC_Profile.icPerceptual;
whichTrans = ICC_Transform.In;
}
}
theTransforms[i1] = new ICC_Transform (profileList[i1],
renderState, whichTrans);
/* get this profile's rendering intent to select transform
from next profile */
renderState = renderingIntent >= 0 ? renderingIntent : getRenderingIntent(profileList[i1]);
/* "middle" profiles use simulation transform */
whichTrans = ICC_Transform.Simulation;
}
/* make the net transform */
thisRasterTransform = new ICC_Transform (theTransforms);
}
int srcTransferType = src.getTransferType();
int dstTransferType = dest.getTransferType();
if ((srcTransferType == DataBuffer.TYPE_FLOAT) ||