当前位置: 首页>>代码示例>>Java>>正文


Java ExtendedBufferCapabilities.getVSync方法代码示例

本文整理汇总了Java中sun.java2d.pipe.hw.ExtendedBufferCapabilities.getVSync方法的典型用法代码示例。如果您正苦于以下问题:Java ExtendedBufferCapabilities.getVSync方法的具体用法?Java ExtendedBufferCapabilities.getVSync怎么用?Java ExtendedBufferCapabilities.getVSync使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sun.java2d.pipe.hw.ExtendedBufferCapabilities的用法示例。


在下文中一共展示了ExtendedBufferCapabilities.getVSync方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createBuffers

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * Creates one or more complex, flipping buffers with the given
 * capabilities.
 * @param numBuffers number of buffers to create; must be greater than
 * one
 * @param caps the capabilities of the buffers.
 * <code>BufferCapabilities.isPageFlipping</code> must be
 * <code>true</code>.
 * @exception AWTException if the capabilities supplied could not be
 * supported or met
 * @exception IllegalStateException if the component has no peer
 * @exception IllegalArgumentException if numBuffers is less than two,
 * or if <code>BufferCapabilities.isPageFlipping</code> is not
 * <code>true</code>.
 * @see java.awt.BufferCapabilities#isPageFlipping()
 */
protected void createBuffers(int numBuffers, BufferCapabilities caps)
    throws AWTException
{
    if (numBuffers < 2) {
        throw new IllegalArgumentException(
            "Number of buffers cannot be less than two");
    } else if (peer == null) {
        throw new IllegalStateException(
            "Component must have a valid peer");
    } else if (caps == null || !caps.isPageFlipping()) {
        throw new IllegalArgumentException(
            "Page flipping capabilities must be specified");
    }

    // save the current bounds
    width = getWidth();
    height = getHeight();

    if (drawBuffer != null) {
        // dispose the existing backbuffers
        drawBuffer = null;
        drawVBuffer = null;
        destroyBuffers();
        // ... then recreate the backbuffers
    }

    if (caps instanceof ExtendedBufferCapabilities) {
        ExtendedBufferCapabilities ebc =
            (ExtendedBufferCapabilities)caps;
        if (ebc.getVSync() == VSYNC_ON) {
            // if this buffer strategy is not allowed to be v-synced,
            // change the caps that we pass to the peer but keep on
            // trying to create v-synced buffers;
            // do not throw IAE here in case it is disallowed, see
            // ExtendedBufferCapabilities for more info
            if (!VSyncedBSManager.vsyncAllowed(this)) {
                caps = ebc.derive(VSYNC_DEFAULT);
            }
        }
    }

    peer.createBuffers(numBuffers, caps);
    updateInternalBuffers();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:61,代码来源:Component.java

示例2: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
     * 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;
    }
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:65,代码来源:CGLVolatileSurfaceManager.java

示例3: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * 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;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:62,代码来源:WGLVolatileSurfaceManager.java

示例4: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * 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;
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:64,代码来源:GLXVolatileSurfaceManager.java

示例5: createBuffers

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * Creates one or more complex, flipping buffers with the given
 * capabilities.
 * @param numBuffers number of buffers to create; must be greater than
 * one
 * @param caps the capabilities of the buffers.
 * {@code BufferCapabilities.isPageFlipping} must be
 * {@code true}.
 * @exception AWTException if the capabilities supplied could not be
 * supported or met
 * @exception IllegalStateException if the component has no peer
 * @exception IllegalArgumentException if numBuffers is less than two,
 * or if {@code BufferCapabilities.isPageFlipping} is not
 * {@code true}.
 * @see java.awt.BufferCapabilities#isPageFlipping()
 */
protected void createBuffers(int numBuffers, BufferCapabilities caps)
    throws AWTException
{
    if (numBuffers < 2) {
        throw new IllegalArgumentException(
            "Number of buffers cannot be less than two");
    } else if (peer == null) {
        throw new IllegalStateException(
            "Component must have a valid peer");
    } else if (caps == null || !caps.isPageFlipping()) {
        throw new IllegalArgumentException(
            "Page flipping capabilities must be specified");
    }

    // save the current bounds
    width = getWidth();
    height = getHeight();

    if (drawBuffer != null) {
        // dispose the existing backbuffers
        drawBuffer = null;
        drawVBuffer = null;
        destroyBuffers();
        // ... then recreate the backbuffers
    }

    if (caps instanceof ExtendedBufferCapabilities) {
        ExtendedBufferCapabilities ebc =
            (ExtendedBufferCapabilities)caps;
        if (ebc.getVSync() == VSYNC_ON) {
            // if this buffer strategy is not allowed to be v-synced,
            // change the caps that we pass to the peer but keep on
            // trying to create v-synced buffers;
            // do not throw IAE here in case it is disallowed, see
            // ExtendedBufferCapabilities for more info
            if (!VSyncedBSManager.vsyncAllowed(this)) {
                caps = ebc.derive(VSYNC_DEFAULT);
            }
        }
    }

    peer.createBuffers(numBuffers, caps);
    updateInternalBuffers();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:61,代码来源:Component.java

示例6: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * 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();
    X11ComponentPeer 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
            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 FBOBJECT
            if (type == OGLSurfaceData.UNDEFINED) {
                type = OGLSurfaceData.FBOBJECT;
            }
            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;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:63,代码来源:GLXVolatileSurfaceManager.java

示例7: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
     * 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;
    }
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:65,代码来源:CGLVolatileSurfaceManager.java

示例8: initAcceleratedSurface

import sun.java2d.pipe.hw.ExtendedBufferCapabilities; //导入方法依赖的package包/类
/**
 * 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;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:61,代码来源:WGLVolatileSurfaceManager.java


注:本文中的sun.java2d.pipe.hw.ExtendedBufferCapabilities.getVSync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。