Java Code Examples for java.awt.BufferCapabilities.FlipContents#UNDEFINED
The following examples show how to use
java.awt.BufferCapabilities.FlipContents#UNDEFINED .
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: WGLGraphicsConfig.java From hottub with GNU General Public License v2.0 | 4 votes |
public WGLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 2
Source File: X11GraphicsConfig.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public XDBECapabilities() { super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 3
Source File: GLXGraphicsConfig.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public GLXBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 4
Source File: GLXGraphicsConfig.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public GLXBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 5
Source File: D3DGraphicsConfig.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 6
Source File: X11GraphicsConfig.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public XDBECapabilities() { super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 7
Source File: WGLGraphicsConfig.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public WGLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 8
Source File: D3DGraphicsConfig.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 9
Source File: GLXGraphicsConfig.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
public GLXBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 10
Source File: GLXGraphicsConfig.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public GLXBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 11
Source File: D3DGraphicsConfig.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 12
Source File: WGLGraphicsConfig.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public WGLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 13
Source File: D3DGraphicsConfig.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 14
Source File: WGLGraphicsConfig.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
public WGLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }
Example 15
Source File: D3DGraphicsConfig.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 16
Source File: X11GraphicsConfig.java From hottub with GNU General Public License v2.0 | 4 votes |
public XDBECapabilities() { super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 17
Source File: D3DGraphicsConfig.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
public D3DBufferCaps() { // REMIND: should we indicate that the front-buffer // (the on-screen rendering) is not accelerated? super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 18
Source File: X11GraphicsConfig.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public XDBECapabilities() { super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 19
Source File: X11GraphicsConfig.java From jdk8u_jdk with GNU General Public License v2.0 | 4 votes |
public XDBECapabilities() { super(imageCaps, imageCaps, FlipContents.UNDEFINED); }
Example 20
Source File: WGLGraphicsConfig.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
public WGLBufferCaps(boolean dblBuf) { super(imageCaps, imageCaps, dblBuf ? FlipContents.UNDEFINED : null); }