14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package sun.font;
27
28 import java.awt.Rectangle;
29 import java.awt.geom.*;
30 import java.util.*;
31
32 import sun.awt.SunHints;
33
34 public final class CStrike extends FontStrike {
35
36 // Creates the native strike
37 private static native long createNativeStrikePtr(long nativeFontPtr,
38 double[] glyphTx,
39 double[] invDevTxMatrix,
40 int aaHint,
41 int fmHint);
42
43 // Disposes the native strike
44 private static native void disposeNativeStrikePtr(long nativeStrikePtr);
45
46 // Creates a StrikeMetrics from the underlying native system fonts
47 private static native StrikeMetrics getFontMetrics(long nativeStrikePtr);
48
49 // Returns native struct pointers used by the Sun 2D Renderer
50 private static native void getGlyphImagePtrsNative(long nativeStrikePtr,
51 long[] glyphInfos,
52 int[] uniCodes, int len);
53
54 // Returns the advance give a glyph code. It should be used only
|
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26 package sun.font;
27
28 import java.awt.Rectangle;
29 import java.awt.geom.*;
30 import java.util.*;
31
32 import sun.awt.SunHints;
33
34 public final class CStrike extends PhysicalStrike {
35
36 // Creates the native strike
37 private static native long createNativeStrikePtr(long nativeFontPtr,
38 double[] glyphTx,
39 double[] invDevTxMatrix,
40 int aaHint,
41 int fmHint);
42
43 // Disposes the native strike
44 private static native void disposeNativeStrikePtr(long nativeStrikePtr);
45
46 // Creates a StrikeMetrics from the underlying native system fonts
47 private static native StrikeMetrics getFontMetrics(long nativeStrikePtr);
48
49 // Returns native struct pointers used by the Sun 2D Renderer
50 private static native void getGlyphImagePtrsNative(long nativeStrikePtr,
51 long[] glyphInfos,
52 int[] uniCodes, int len);
53
54 // Returns the advance give a glyph code. It should be used only
|