Java Code Examples for sun.font.GlyphList#isRGBOrder()

The following examples show how to use sun.font.GlyphList#isRGBOrder() . 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: BufferedTextPipe.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 2
Source File: BufferedTextPipe.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 3
Source File: BufferedTextPipe.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 4
Source File: BufferedTextPipe.java    From openjdk-jdk8u with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 5
Source File: BufferedTextPipe.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 6
Source File: BufferedTextPipe.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 7
Source File: BufferedTextPipe.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 8
Source File: BufferedTextPipe.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 9
Source File: BufferedTextPipe.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 10
Source File: BufferedTextPipe.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 11
Source File: BufferedTextPipe.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 12
Source File: BufferedTextPipe.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 13
Source File: OGLTextRenderer.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
protected void drawGlyphList(SunGraphics2D sg2d, GlyphList gl) {
    final String prim = "OGLDrawGlyphs" + (gl.isRGBOrder() ? "LCD" : "Gray");
    if ((GraphicsPrimitive.traceflags & GraphicsPrimitive.TRACEPTIME) == 0) {
        GraphicsPrimitive.tracePrimitive(prim);
    }
    long time = System.nanoTime();
    super.drawGlyphList(sg2d, gl);
    GraphicsPrimitive.tracePrimitiveTime(prim, System.nanoTime() - time);
}
 
Example 14
Source File: BufferedTextPipe.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}
 
Example 15
Source File: BufferedTextPipe.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Packs the given parameters into a single int value in order to save
 * space on the rendering queue.  Note that most of these parameters
 * are only used for rendering LCD-optimized text, but conditionalizing
 * this work wouldn't make any impact on performance, so we will pack
 * those parameters even in the non-LCD case.
 */
private static int createPackedParams(SunGraphics2D sg2d, GlyphList gl) {
    return
        (((gl.usePositions() ? 1 : 0)   << OFFSET_POSITIONS) |
         ((gl.isSubPixPos()  ? 1 : 0)   << OFFSET_SUBPIXPOS) |
         ((gl.isRGBOrder()   ? 1 : 0)   << OFFSET_RGBORDER ) |
         ((sg2d.lcdTextContrast & 0xff) << OFFSET_CONTRAST ));
}