< prev index next >

src/java.desktop/share/classes/sun/font/FontUtilities.java

Print this page

        

@@ -48,10 +48,12 @@
 
     public static boolean isLinux;
 
     public static boolean isMacOSX;
 
+    public static boolean isAIX;
+
     public static boolean useJDKScaler;
 
     public static boolean useT2K;
     // useLegacy is a short-term debugging transition aid.
     public static boolean useLegacy;

@@ -78,10 +80,12 @@
 
                 isLinux = osName.startsWith("Linux");
 
                 isMacOSX = osName.contains("OS X"); // TODO: MacOSX
 
+                isAIX = osName.startsWith("AIX");
+
                 /* Support a value of "t2k" as meaning use the JDK internal
                  * scaler over the platform scaler whether or not t2k is
                  * actually available.
                  * This can be considered transitional support for some
                  * level of compatibility, as in it avoids the native scaler
< prev index next >