Searched refs:SunHints (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/awt/
H A DSunHints.java36 public class SunHints { class
97 private SunHints.Key myKey;
104 private synchronized static void register(SunHints.Key key,
124 public Value(SunHints.Key key, int index, String description) {
157 * The hash code for all SunHints.Value objects will be the same
166 * The equals method for all SunHints.Value objects will return
265 new SunHints.Key(SunHints.INTKEY_RENDERING,
268 new SunHints.Value(KEY_RENDERING,
269 SunHints
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java34 import sun.awt.SunHints;
220 SunHints.KEY_ANTIALIASING;
227 SunHints.VALUE_ANTIALIAS_ON;
234 SunHints.VALUE_ANTIALIAS_OFF;
242 SunHints.VALUE_ANTIALIAS_DEFAULT;
261 SunHints.KEY_RENDERING;
269 SunHints.VALUE_RENDER_SPEED;
277 SunHints.VALUE_RENDER_QUALITY;
286 SunHints.VALUE_RENDER_DEFAULT;
312 SunHints
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DGlyphListLoopPipe.java29 import sun.awt.SunHints;
45 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
49 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
53 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_HRGB:
54 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_VRGB:
H A DOutlineTextRenderer.java33 import sun.awt.SunHints;
87 if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF &&
88 g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) {
90 g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON;
92 } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF
93 && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) {
95 g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF;
123 SunHints.INTVAL_TEXT_ANTIALIAS_OFF) {
128 if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) {
130 g2d.antialiasHint = SunHints
[all...]
H A DLCDTextRenderer.java31 import static sun.awt.SunHints.*;
H A DSolidTextRenderer.java29 import sun.awt.SunHints;
H A DPixelToParallelogramConverter.java34 import sun.awt.SunHints;
232 if (sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE) {
311 sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE)
350 sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE)
H A DAAShapePipe.java33 import sun.awt.SunHints;
146 sg.strokeHint != SunHints.INTVAL_STROKE_PURE);
H A DLoopPipe.java46 import sun.awt.SunHints;
233 sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE);
276 (sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE);
H A DGlyphListPipe.java35 import sun.awt.SunHints;
H A DSpanShapeRenderer.java36 import sun.awt.SunHints;
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DX11TextRenderer.java31 import sun.awt.SunHints;
56 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
59 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
62 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_HRGB:
63 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_VRGB:
H A DFontConfigManager.java30 import sun.awt.SunHints;
119 * Native return values map to the text aa values in sun.awt.SunHints.
139 return SunHints.Value.get(SunHints.INTKEY_TEXT_ANTIALIASING,
/openjdk7/jdk/src/share/classes/sun/java2d/
H A DSunGraphics2D.java90 import sun.awt.SunHints;
245 renderHint = SunHints.INTVAL_RENDER_DEFAULT;
246 antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF;
247 textAntialiasHint = SunHints.INTVAL_TEXT_ANTIALIAS_DEFAULT;
248 fractionalMetricsHint = SunHints.INTVAL_FRACTIONALMETRICS_OFF;
251 strokeHint = SunHints.INTVAL_STROKE_DEFAULT;
637 if (fmhint == SunHints.INTVAL_FRACTIONALMETRICS_DEFAULT) {
638 fmhint = SunHints.INTVAL_FRACTIONALMETRICS_OFF;
668 aahint = ((SunHints.Value)frc.getAntiAliasingHint()).getIndex();
670 if (aahint == SunHints
[all...]
H A DSurfaceData.java75 import sun.awt.SunHints;
535 sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON &&
608 if (sg2d.antialiasHint == SunHints.INTVAL_ANTIALIAS_ON) {
630 } else if (sg2d.antialiasHint == SunHints.INTVAL_ANTIALIAS_ON) {
741 case SunHints.INTVAL_TEXT_ANTIALIAS_DEFAULT:
747 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
750 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
756 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_HRGB:
757 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_VRGB:
760 case SunHints
[all...]
/openjdk7/jdk/src/windows/classes/sun/java2d/windows/
H A DGDIWindowSurfaceData.java37 import sun.awt.SunHints;
155 if (sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON &&
169 case SunHints.INTVAL_TEXT_ANTIALIAS_DEFAULT:
171 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
175 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
182 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_HRGB:
183 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_VRGB:
187 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCTextPipe.java59 final Object oldAliasingHint = sg2d.getRenderingHint(SunHints.KEY_ANTIALIASING);
61 sg2d.setRenderingHint(SunHints.KEY_ANTIALIASING, (frc.isAntiAliased() ? SunHints.VALUE_ANTIALIAS_ON : SunHints.VALUE_ANTIALIAS_OFF));
71 sg2d.setRenderingHint(SunHints.KEY_ANTIALIASING, oldAliasingHint);
/openjdk7/jdk/src/solaris/classes/sun/java2d/x11/
H A DX11SurfaceData.java45 import sun.awt.SunHints;
297 if (sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON &&
327 case SunHints.INTVAL_TEXT_ANTIALIAS_DEFAULT:
329 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
339 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
348 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_HRGB:
349 case SunHints.INTVAL_TEXT_ANTIALIAS_LCD_VRGB:
353 case SunHints.INTVAL_TEXT_ANTIALIAS_OFF:
363 case SunHints.INTVAL_TEXT_ANTIALIAS_ON:
/openjdk7/jdk/src/solaris/classes/sun/java2d/jules/
H A DJulesShapePipe.java70 (bs != null && sg2d.strokeHint != SunHints.INTVAL_STROKE_PURE);
/openjdk7/jdk/src/share/classes/sun/font/
H A DFontStrikeDesc.java31 import static sun.awt.SunHints.*;
/openjdk7/jdk/src/macosx/classes/sun/font/
H A DCStrike.java32 import sun.awt.SunHints;
139 return desc.fmHint == SunHints.INTVAL_FRACTIONALMETRICS_ON;
/openjdk7/jdk/src/share/classes/sun/java2d/opengl/
H A DOGLSurfaceData.java34 import sun.awt.SunHints;
456 if (sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) {
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DGraphicsPrimitiveMgr.java66 sun.awt.SunHints.class);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DSurfaceData.java43 import sun.awt.SunHints;
585 if (sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) {
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRSurfaceData.java139 if (sg2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) {
154 if (sg2d.antialiasHint == SunHints.INTVAL_ANTIALIAS_ON &&

Completed in 71 milliseconds

12