Java Code Examples for sun.java2d.SunGraphics2D#validatePipe()
The following examples show how to use
sun.java2d.SunGraphics2D#validatePipe() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: OutlineTextRenderer.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
public void drawGlyphVector(SunGraphics2D g2d, GlyphVector gv, float x, float y) { Shape s = gv.getOutline(x, y); int prevaaHint = - 1; FontRenderContext frc = gv.getFontRenderContext(); boolean aa = frc.isAntiAliased(); /* aa will be true if any AA mode has been specified. * ie for LCD and 'gasp' modes too. * We will check if 'gasp' has resolved AA to be "OFF", and * in all other cases (ie AA ON and all LCD modes) use AA outlines. */ if (aa) { if (g2d.getGVFontInfo(gv.getFont(), frc).aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF) { aa = false; } } if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (!aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 2
Source File: OutlineTextRenderer.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
public void drawString(SunGraphics2D g2d, String str, double x, double y) { if ("".equals(str)) { return; // TextLayout constructor throws IAE on "". } TextLayout tl = new TextLayout(str, g2d.getFont(), g2d.getFontRenderContext()); Shape s = tl.getOutline(AffineTransform.getTranslateInstance(x, y)); int textAAHint = g2d.getFontInfo().aaHint; int prevaaHint = - 1; if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 3
Source File: OutlineTextRenderer.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public void drawGlyphVector(SunGraphics2D g2d, GlyphVector gv, float x, float y) { Shape s = gv.getOutline(x, y); int prevaaHint = - 1; FontRenderContext frc = gv.getFontRenderContext(); boolean aa = frc.isAntiAliased(); /* aa will be true if any AA mode has been specified. * ie for LCD and 'gasp' modes too. * We will check if 'gasp' has resolved AA to be "OFF", and * in all other cases (ie AA ON and all LCD modes) use AA outlines. */ if (aa) { if (g2d.getGVFontInfo(gv.getFont(), frc).aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF) { aa = false; } } if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (!aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 4
Source File: OutlineTextRenderer.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public void drawGlyphVector(SunGraphics2D g2d, GlyphVector gv, float x, float y) { Shape s = gv.getOutline(x, y); int prevaaHint = - 1; FontRenderContext frc = gv.getFontRenderContext(); boolean aa = frc.isAntiAliased(); /* aa will be true if any AA mode has been specified. * ie for LCD and 'gasp' modes too. * We will check if 'gasp' has resolved AA to be "OFF", and * in all other cases (ie AA ON and all LCD modes) use AA outlines. */ if (aa) { if (g2d.getGVFontInfo(gv.getFont(), frc).aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF) { aa = false; } } if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (!aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 5
Source File: OutlineTextRenderer.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
public void drawString(SunGraphics2D g2d, String str, double x, double y) { if ("".equals(str)) { return; // TextLayout constructor throws IAE on "". } TextLayout tl = new TextLayout(str, g2d.getFont(), g2d.getFontRenderContext()); Shape s = tl.getOutline(AffineTransform.getTranslateInstance(x, y)); int textAAHint = g2d.getFontInfo().aaHint; int prevaaHint = - 1; if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 6
Source File: OutlineTextRenderer.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
public void drawString(SunGraphics2D g2d, String str, double x, double y) { if ("".equals(str)) { return; // TextLayout constructor throws IAE on "". } TextLayout tl = new TextLayout(str, g2d.getFont(), g2d.getFontRenderContext()); Shape s = tl.getOutline(AffineTransform.getTranslateInstance(x, y)); int textAAHint = g2d.getFontInfo().aaHint; int prevaaHint = - 1; if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 7
Source File: OutlineTextRenderer.java From Bytecoder with Apache License 2.0 | 5 votes |
public void drawGlyphVector(SunGraphics2D g2d, GlyphVector gv, float x, float y) { Shape s = gv.getOutline(x, y); int prevaaHint = - 1; FontRenderContext frc = gv.getFontRenderContext(); boolean aa = frc.isAntiAliased(); /* aa will be true if any AA mode has been specified. * ie for LCD and 'gasp' modes too. * We will check if 'gasp' has resolved AA to be "OFF", and * in all other cases (ie AA ON and all LCD modes) use AA outlines. */ if (aa) { if (g2d.getGVFontInfo(gv.getFont(), frc).aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF) { aa = false; } } if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (!aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 8
Source File: OutlineTextRenderer.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
public void drawString(SunGraphics2D g2d, String str, double x, double y) { if ("".equals(str)) { return; // TextLayout constructor throws IAE on "". } TextLayout tl = new TextLayout(str, g2d.getFont(), g2d.getFontRenderContext()); Shape s = tl.getOutline(AffineTransform.getTranslateInstance(x, y)); int textAAHint = g2d.getFontInfo().aaHint; int prevaaHint = - 1; if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 9
Source File: OutlineTextRenderer.java From hottub with GNU General Public License v2.0 | 5 votes |
public void drawString(SunGraphics2D g2d, String str, double x, double y) { if ("".equals(str)) { return; // TextLayout constructor throws IAE on "". } TextLayout tl = new TextLayout(str, g2d.getFont(), g2d.getFontRenderContext()); Shape s = tl.getOutline(AffineTransform.getTranslateInstance(x, y)); int textAAHint = g2d.getFontInfo().aaHint; int prevaaHint = - 1; if (textAAHint != SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (textAAHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 10
Source File: OutlineTextRenderer.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
public void drawGlyphVector(SunGraphics2D g2d, GlyphVector gv, float x, float y) { Shape s = gv.getOutline(x, y); int prevaaHint = - 1; FontRenderContext frc = gv.getFontRenderContext(); boolean aa = frc.isAntiAliased(); /* aa will be true if any AA mode has been specified. * ie for LCD and 'gasp' modes too. * We will check if 'gasp' has resolved AA to be "OFF", and * in all other cases (ie AA ON and all LCD modes) use AA outlines. */ if (aa) { if (g2d.getGVFontInfo(gv.getFont(), frc).aaHint == SunHints.INTVAL_TEXT_ANTIALIAS_OFF) { aa = false; } } if (aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_ON) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_ON; g2d.validatePipe(); } else if (!aa && g2d.antialiasHint != SunHints.INTVAL_ANTIALIAS_OFF) { prevaaHint = g2d.antialiasHint; g2d.antialiasHint = SunHints.INTVAL_ANTIALIAS_OFF; g2d.validatePipe(); } g2d.fill(s); if (prevaaHint != -1) { g2d.antialiasHint = prevaaHint; g2d.validatePipe(); } }
Example 11
Source File: ValidatePipe.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 12
Source File: ValidatePipe.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 13
Source File: ValidatePipe.java From Bytecoder with Apache License 2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 14
Source File: ValidatePipe.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 15
Source File: ValidatePipe.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 16
Source File: ValidatePipe.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 17
Source File: ValidatePipe.java From hottub with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 18
Source File: ValidatePipe.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 19
Source File: ValidatePipe.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }
Example 20
Source File: ValidatePipe.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public boolean validate(SunGraphics2D sg) { sg.validatePipe(); return true; }