Java Code Examples for sun.java2d.loops.SurfaceType#Any
The following examples show how to use
sun.java2d.loops.SurfaceType#Any .
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: OGLBlitLoops.java From dragonwell8_jdk with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 2
Source File: OGLBlitLoops.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 3
Source File: OGLBlitLoops.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 4
Source File: D3DBlitLoops.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
D3DGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 5
Source File: OGLBlitLoops.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 6
Source File: OGLBlitLoops.java From hottub with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 7
Source File: D3DBlitLoops.java From jdk8u_jdk with GNU General Public License v2.0 | 5 votes |
D3DGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 8
Source File: OGLBlitLoops.java From Bytecoder with Apache License 2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 9
Source File: OGLBlitLoops.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 10
Source File: OGLBlitLoops.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
OGLGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 11
Source File: D3DBlitLoops.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
D3DGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 12
Source File: D3DBlitLoops.java From jdk8u-jdk with GNU General Public License v2.0 | 5 votes |
D3DGeneralBlit(SurfaceType dstType, CompositeType compType, Blit performop) { super(SurfaceType.Any, compType, dstType); this.performop = performop; }
Example 13
Source File: D3DBlitLoops.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
D3DGeneralTransformedBlit(final TransformBlit performop) { super(SurfaceType.Any, CompositeType.AnyAlpha, D3DSurfaceData.D3DSurface); this.performop = performop; }
Example 14
Source File: NullSurfaceData.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
private NullSurfaceData() { super(State.IMMUTABLE, SurfaceType.Any, ColorModel.getRGBdefault()); }
Example 15
Source File: NullSurfaceData.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
private NullSurfaceData() { super(State.IMMUTABLE, SurfaceType.Any, ColorModel.getRGBdefault()); }
Example 16
Source File: NullSurfaceData.java From Bytecoder with Apache License 2.0 | 4 votes |
private NullSurfaceData() { super(State.IMMUTABLE, SurfaceType.Any, ColorModel.getRGBdefault()); }
Example 17
Source File: D3DBlitLoops.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
D3DGeneralTransformedBlit(final TransformBlit performop) { super(SurfaceType.Any, CompositeType.AnyAlpha, D3DSurfaceData.D3DSurface); this.performop = performop; }
Example 18
Source File: NullSurfaceData.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
private NullSurfaceData() { super(State.IMMUTABLE, SurfaceType.Any, ColorModel.getRGBdefault()); }
Example 19
Source File: X11PMBlitLoops.java From jdk8u-jdk with GNU General Public License v2.0 | 2 votes |
/** * @param realDstType SurfaceType for which the loop should be * registered * @param delegateDstType SurfaceType which will be used * for finding delegate loop */ public DelegateBlitLoop(SurfaceType realDstType, SurfaceType delegateDstType) { super(SurfaceType.Any, CompositeType.SrcNoEa, realDstType); this.dstType = delegateDstType; }
Example 20
Source File: X11PMBlitLoops.java From openjdk-jdk8u with GNU General Public License v2.0 | 2 votes |
/** * @param realDstType SurfaceType for which the loop should be * registered * @param delegateDstType SurfaceType which will be used * for finding delegate loop */ public DelegateBlitLoop(SurfaceType realDstType, SurfaceType delegateDstType) { super(SurfaceType.Any, CompositeType.SrcNoEa, realDstType); this.dstType = delegateDstType; }