Java Code Examples for sun.java2d.pipe.hw.ExtendedBufferCapabilities#getVSync()
The following examples show how to use
sun.java2d.pipe.hw.ExtendedBufferCapabilities#getVSync() .
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: WGLVolatileSurfaceManager.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 2
Source File: CGLVolatileSurfaceManager.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 3
Source File: CGLVolatileSurfaceManager.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 4
Source File: WGLVolatileSurfaceManager.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Create a FBO-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); final ComponentAccessor acc = AWTAccessor.getComponentAccessor(); WComponentPeer peer = (comp != null) ? acc.getPeer(comp) : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose FBOBJECT if (type == OGLSurfaceData.UNDEFINED) { type = OGLSurfaceData.FBOBJECT; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 5
Source File: CGLVolatileSurfaceManager.java From openjdk-jdk9 with GNU General Public License v2.0 | 4 votes |
/** * Create a FBO-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentAccessor acc = AWTAccessor.getComponentAccessor(); final ComponentPeer peer = (comp != null) ? acc.getPeer(comp) : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose FBOBJECT if (type == OGLSurfaceData.UNDEFINED) { type = OGLSurfaceData.FBOBJECT; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 6
Source File: CGLVolatileSurfaceManager.java From hottub with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 7
Source File: GLXVolatileSurfaceManager.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); X11ComponentPeer peer = (comp != null) ? (X11ComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = GLXSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { GLXGraphicsConfig gc = (GLXGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = GLXSurfaceData.createData(peer, vImg, type); } else { sData = GLXSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 8
Source File: WGLVolatileSurfaceManager.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 9
Source File: CGLVolatileSurfaceManager.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 10
Source File: GLXVolatileSurfaceManager.java From openjdk-jdk8u with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); X11ComponentPeer peer = (comp != null) ? (X11ComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = GLXSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { GLXGraphicsConfig gc = (GLXGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = GLXSurfaceData.createData(peer, vImg, type); } else { sData = GLXSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 11
Source File: WGLVolatileSurfaceManager.java From openjdk-8-source with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 12
Source File: CGLVolatileSurfaceManager.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 13
Source File: GLXVolatileSurfaceManager.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); X11ComponentPeer peer = (comp != null) ? (X11ComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = GLXSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { GLXGraphicsConfig gc = (GLXGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = GLXSurfaceData.createData(peer, vImg, type); } else { sData = GLXSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 14
Source File: WGLVolatileSurfaceManager.java From jdk8u60 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 15
Source File: WGLVolatileSurfaceManager.java From jdk8u-jdk with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 16
Source File: WGLVolatileSurfaceManager.java From jdk8u-dev-jdk with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 17
Source File: WGLVolatileSurfaceManager.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 18
Source File: CGLVolatileSurfaceManager.java From TencentKona-8 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig) */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData = null; Component comp = vImg.getComponent(); final ComponentPeer peer = (comp != null) ? comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback && peer instanceof BackBufferCapsProvider) { BackBufferCapsProvider provider = (BackBufferCapsProvider)peer; BufferCapabilities caps = provider.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { // TODO: modify parameter to delegate // sData = CGLSurfaceData.createData(peer, vImg, type); } else { sData = CGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 19
Source File: WGLVolatileSurfaceManager.java From openjdk-8 with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }
Example 20
Source File: WGLVolatileSurfaceManager.java From dragonwell8_jdk with GNU General Public License v2.0 | 4 votes |
/** * Create a pbuffer-based SurfaceData object (or init the backbuffer * of an existing window if this is a double buffered GraphicsConfig). */ protected SurfaceData initAcceleratedSurface() { SurfaceData sData; Component comp = vImg.getComponent(); WComponentPeer peer = (comp != null) ? (WComponentPeer)comp.getPeer() : null; try { boolean createVSynced = false; boolean forceback = false; if (context instanceof Boolean) { forceback = ((Boolean)context).booleanValue(); if (forceback) { BufferCapabilities caps = peer.getBackBufferCaps(); if (caps instanceof ExtendedBufferCapabilities) { ExtendedBufferCapabilities ebc = (ExtendedBufferCapabilities)caps; if (ebc.getVSync() == VSYNC_ON && ebc.getFlipContents() == COPIED) { createVSynced = true; forceback = false; } } } } if (forceback) { // peer must be non-null in this case sData = WGLSurfaceData.createData(peer, vImg, FLIP_BACKBUFFER); } else { WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig(); ColorModel cm = gc.getColorModel(vImg.getTransparency()); int type = vImg.getForcedAccelSurfaceType(); // if acceleration type is forced (type != UNDEFINED) then // use the forced type, otherwise choose one based on caps if (type == OGLSurfaceData.UNDEFINED) { type = gc.isCapPresent(CAPS_EXT_FBOBJECT) ? OGLSurfaceData.FBOBJECT : OGLSurfaceData.PBUFFER; } if (createVSynced) { sData = WGLSurfaceData.createData(peer, vImg, type); } else { sData = WGLSurfaceData.createData(gc, vImg.getWidth(), vImg.getHeight(), cm, vImg, type); } } } catch (NullPointerException ex) { sData = null; } catch (OutOfMemoryError er) { sData = null; } return sData; }