sun.java2d.loops.GraphicsPrimitiveMgr Java Examples

The following examples show how to use sun.java2d.loops.GraphicsPrimitiveMgr. 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: GDIBlitLoops.java    From openjdk-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #2
Source File: GDIBlitLoops.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #3
Source File: GDIBlitLoops.java    From jdk8u60 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #4
Source File: GDIBlitLoops.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #5
Source File: GDIBlitLoops.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #6
Source File: GDIBlitLoops.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #7
Source File: GDIBlitLoops.java    From jdk8u-dev-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #8
Source File: GDIBlitLoops.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #9
Source File: GDIBlitLoops.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #10
Source File: GDIBlitLoops.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #11
Source File: GDIBlitLoops.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #12
Source File: GDIBlitLoops.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #13
Source File: GDIBlitLoops.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Note that we do not register loops to 8-byte destinations.  This
 * is due to faster processing of dithering through our software
 * loops than through GDI StretchBlt processing.
 */
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new GDIBlitLoops(SurfaceType.IntRgb,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.Ushort555Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0x7C00, 0x03E0, 0x001F),
        new GDIBlitLoops(SurfaceType.Ushort565Rgb,
                         GDIWindowSurfaceData.AnyGdi,
                         0xF800, 0x07E0, 0x001F),
        new GDIBlitLoops(SurfaceType.ThreeByteBgr,
                         GDIWindowSurfaceData.AnyGdi),
        new GDIBlitLoops(SurfaceType.ByteIndexedOpaque,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.Index8Gray,
                         GDIWindowSurfaceData.AnyGdi,
                         true),
        new GDIBlitLoops(SurfaceType.ByteGray,
                         GDIWindowSurfaceData.AnyGdi),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #14
Source File: OGLMaskBlit.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskBlit(IntArgb,    SrcOver),
        new OGLMaskBlit(IntArgbPre, SrcOver),
        new OGLMaskBlit(IntRgb,     SrcOver),
        new OGLMaskBlit(IntRgb,     SrcNoEa),
        new OGLMaskBlit(IntBgr,     SrcOver),
        new OGLMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #15
Source File: OGLMaskFill.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskFill(AnyColor,                  SrcOver),
        new OGLMaskFill(OpaqueColor,               SrcNoEa),
        new OGLMaskFill(GradientPaint,             SrcOver),
        new OGLMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new OGLMaskFill(LinearGradientPaint,       SrcOver),
        new OGLMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new OGLMaskFill(RadialGradientPaint,       SrcOver),
        new OGLMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new OGLMaskFill(TexturePaint,              SrcOver),
        new OGLMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #16
Source File: OGLMaskBlit.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskBlit(IntArgb,    SrcOver),
        new OGLMaskBlit(IntArgbPre, SrcOver),
        new OGLMaskBlit(IntRgb,     SrcOver),
        new OGLMaskBlit(IntRgb,     SrcNoEa),
        new OGLMaskBlit(IntBgr,     SrcOver),
        new OGLMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #17
Source File: X11PMBlitBgLoops.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.IntBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteBgrX11_BM,
                             X11SurfaceData.ThreeByteBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteRgbX11_BM,
                             X11SurfaceData.ThreeByteRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteIndexedX11_BM,
                             X11SurfaceData.ByteIndexedOpaqueX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteGrayX11_BM,
                             X11SurfaceData.ByteGrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.Index8GrayX11_BM,
                             X11SurfaceData.Index8GrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort555RgbX11_BM,
                             X11SurfaceData.UShort555RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort565RgbX11_BM,
                             X11SurfaceData.UShort565RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShortIndexedX11_BM,
                             X11SurfaceData.UShortIndexedX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntArgbPreX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.FourByteAbgrPreX11),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #18
Source File: D3DMaskFill.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskFill(AnyColor,                  SrcOver),
        new D3DMaskFill(OpaqueColor,               SrcNoEa),
        new D3DMaskFill(GradientPaint,             SrcOver),
        new D3DMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new D3DMaskFill(LinearGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new D3DMaskFill(RadialGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new D3DMaskFill(TexturePaint,              SrcOver),
        new D3DMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #19
Source File: D3DMaskBlit.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskBlit(IntArgb,    SrcOver),
        new D3DMaskBlit(IntArgbPre, SrcOver),
        new D3DMaskBlit(IntRgb,     SrcOver),
        new D3DMaskBlit(IntRgb,     SrcNoEa),
        new D3DMaskBlit(IntBgr,     SrcOver),
        new D3DMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #20
Source File: X11PMBlitBgLoops.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.IntBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteBgrX11_BM,
                             X11SurfaceData.ThreeByteBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteRgbX11_BM,
                             X11SurfaceData.ThreeByteRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteIndexedX11_BM,
                             X11SurfaceData.ByteIndexedOpaqueX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteGrayX11_BM,
                             X11SurfaceData.ByteGrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.Index8GrayX11_BM,
                             X11SurfaceData.Index8GrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort555RgbX11_BM,
                             X11SurfaceData.UShort555RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort565RgbX11_BM,
                             X11SurfaceData.UShort565RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShortIndexedX11_BM,
                             X11SurfaceData.UShortIndexedX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntArgbPreX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.FourByteAbgrPreX11),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #21
Source File: D3DMaskFill.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskFill(AnyColor,                  SrcOver),
        new D3DMaskFill(OpaqueColor,               SrcNoEa),
        new D3DMaskFill(GradientPaint,             SrcOver),
        new D3DMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new D3DMaskFill(LinearGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new D3DMaskFill(RadialGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new D3DMaskFill(TexturePaint,              SrcOver),
        new D3DMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #22
Source File: OGLMaskBlit.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskBlit(IntArgb,    SrcOver),
        new OGLMaskBlit(IntArgbPre, SrcOver),
        new OGLMaskBlit(IntRgb,     SrcOver),
        new OGLMaskBlit(IntRgb,     SrcNoEa),
        new OGLMaskBlit(IntBgr,     SrcOver),
        new OGLMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #23
Source File: D3DMaskFill.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskFill(AnyColor,                  SrcOver),
        new D3DMaskFill(OpaqueColor,               SrcNoEa),
        new D3DMaskFill(GradientPaint,             SrcOver),
        new D3DMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new D3DMaskFill(LinearGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new D3DMaskFill(RadialGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new D3DMaskFill(TexturePaint,              SrcOver),
        new D3DMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #24
Source File: X11PMBlitBgLoops.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.IntBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteBgrX11_BM,
                             X11SurfaceData.ThreeByteBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteRgbX11_BM,
                             X11SurfaceData.ThreeByteRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteIndexedX11_BM,
                             X11SurfaceData.ByteIndexedOpaqueX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteGrayX11_BM,
                             X11SurfaceData.ByteGrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.Index8GrayX11_BM,
                             X11SurfaceData.Index8GrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort555RgbX11_BM,
                             X11SurfaceData.UShort555RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort565RgbX11_BM,
                             X11SurfaceData.UShort565RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShortIndexedX11_BM,
                             X11SurfaceData.UShortIndexedX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntArgbPreX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.FourByteAbgrPreX11),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #25
Source File: X11PMBlitBgLoops.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
public static void register()
{
    GraphicsPrimitive[] primitives = {
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.IntBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteBgrX11_BM,
                             X11SurfaceData.ThreeByteBgrX11),
        new X11PMBlitBgLoops(X11SurfaceData.ThreeByteRgbX11_BM,
                             X11SurfaceData.ThreeByteRgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteIndexedX11_BM,
                             X11SurfaceData.ByteIndexedOpaqueX11),
        new X11PMBlitBgLoops(X11SurfaceData.ByteGrayX11_BM,
                             X11SurfaceData.ByteGrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.Index8GrayX11_BM,
                             X11SurfaceData.Index8GrayX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort555RgbX11_BM,
                             X11SurfaceData.UShort555RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShort565RgbX11_BM,
                             X11SurfaceData.UShort565RgbX11),
        new X11PMBlitBgLoops(X11SurfaceData.UShortIndexedX11_BM,
                             X11SurfaceData.UShortIndexedX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntRgbX11_BM,
                             X11SurfaceData.IntArgbPreX11),
        new X11PMBlitBgLoops(X11SurfaceData.IntBgrX11_BM,
                             X11SurfaceData.FourByteAbgrPreX11),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #26
Source File: D3DMaskBlit.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskBlit(IntArgb,    SrcOver),
        new D3DMaskBlit(IntArgbPre, SrcOver),
        new D3DMaskBlit(IntRgb,     SrcOver),
        new D3DMaskBlit(IntRgb,     SrcNoEa),
        new D3DMaskBlit(IntBgr,     SrcOver),
        new D3DMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #27
Source File: D3DMaskFill.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskFill(AnyColor,                  SrcOver),
        new D3DMaskFill(OpaqueColor,               SrcNoEa),
        new D3DMaskFill(GradientPaint,             SrcOver),
        new D3DMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new D3DMaskFill(LinearGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new D3DMaskFill(RadialGradientPaint,       SrcOver),
        new D3DMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new D3DMaskFill(TexturePaint,              SrcOver),
        new D3DMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #28
Source File: OGLMaskBlit.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskBlit(IntArgb,    SrcOver),
        new OGLMaskBlit(IntArgbPre, SrcOver),
        new OGLMaskBlit(IntRgb,     SrcOver),
        new OGLMaskBlit(IntRgb,     SrcNoEa),
        new OGLMaskBlit(IntBgr,     SrcOver),
        new OGLMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #29
Source File: OGLMaskFill.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new OGLMaskFill(AnyColor,                  SrcOver),
        new OGLMaskFill(OpaqueColor,               SrcNoEa),
        new OGLMaskFill(GradientPaint,             SrcOver),
        new OGLMaskFill(OpaqueGradientPaint,       SrcNoEa),
        new OGLMaskFill(LinearGradientPaint,       SrcOver),
        new OGLMaskFill(OpaqueLinearGradientPaint, SrcNoEa),
        new OGLMaskFill(RadialGradientPaint,       SrcOver),
        new OGLMaskFill(OpaqueRadialGradientPaint, SrcNoEa),
        new OGLMaskFill(TexturePaint,              SrcOver),
        new OGLMaskFill(OpaqueTexturePaint,        SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}
 
Example #30
Source File: D3DMaskBlit.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
static void register() {
    GraphicsPrimitive[] primitives = {
        new D3DMaskBlit(IntArgb,    SrcOver),
        new D3DMaskBlit(IntArgbPre, SrcOver),
        new D3DMaskBlit(IntRgb,     SrcOver),
        new D3DMaskBlit(IntRgb,     SrcNoEa),
        new D3DMaskBlit(IntBgr,     SrcOver),
        new D3DMaskBlit(IntBgr,     SrcNoEa),
    };
    GraphicsPrimitiveMgr.register(primitives);
}