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


Java SunVolatileImage.getGraphicsConfig方法代码示例

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


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

示例1: CGLVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public CGLVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is opaque OR
     *   - the image is translucent AND
     *       - the GraphicsConfig supports the FBO extension OR
     *       - the GraphicsConfig has a stored alpha channel
     */
    int transparency = vImg.getTransparency();
    CGLGraphicsConfig gc = (CGLGraphicsConfig)vImg.getGraphicsConfig();
    accelerationEnabled =
        (transparency == Transparency.OPAQUE) ||
        ((transparency == Transparency.TRANSLUCENT) &&
         (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
          gc.isCapPresent(CAPS_STORED_ALPHA)));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:CGLVolatileSurfaceManager.java

示例2: WGLVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public WGLVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is opaque OR
     *   - the image is translucent AND
     *       - the GraphicsConfig supports the FBO extension OR
     *       - the GraphicsConfig has a stored alpha channel
     */
    int transparency = vImg.getTransparency();
    WGLGraphicsConfig gc = (WGLGraphicsConfig)vImg.getGraphicsConfig();
    accelerationEnabled =
        (transparency == Transparency.OPAQUE) ||
        ((transparency == Transparency.TRANSLUCENT) &&
         (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
          gc.isCapPresent(CAPS_STORED_ALPHA)));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:WGLVolatileSurfaceManager.java

示例3: GLXVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public GLXVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is opaque OR
     *   - the image is translucent AND
     *       - the GraphicsConfig supports the FBO extension OR
     *       - the GraphicsConfig has a stored alpha channel
     */
    int transparency = vImg.getTransparency();
    GLXGraphicsConfig gc = (GLXGraphicsConfig)vImg.getGraphicsConfig();
    accelerationEnabled =
        (transparency == Transparency.OPAQUE) ||
        ((transparency == Transparency.TRANSLUCENT) &&
         (gc.isCapPresent(CAPS_EXT_FBOBJECT) ||
          gc.isCapPresent(CAPS_STORED_ALPHA)));
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:GLXVolatileSurfaceManager.java

示例4: createVolatileManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
/**
 * Creates a new instance of a VolatileSurfaceManager given any
 * arbitrary SunVolatileImage.  An optional context Object can be supplied
 * as a way for the caller to pass pipeline-specific context data to
 * the VolatileSurfaceManager (such as a backbuffer handle, for example).
 *
 * For Windows platforms, this method returns a Windows-specific
 * VolatileSurfaceManager.
 */
public VolatileSurfaceManager createVolatileManager(SunVolatileImage vImg,
                                                    Object context)
{
    GraphicsConfiguration gc = vImg.getGraphicsConfig();
    if (gc instanceof D3DGraphicsConfig) {
        return new D3DVolatileSurfaceManager(vImg, context);
    } else if (gc instanceof WGLGraphicsConfig) {
        return new WGLVolatileSurfaceManager(vImg, context);
    } else {
        return new BufImgVolatileSurfaceManager(vImg, context);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:WindowsSurfaceManagerFactory.java

示例5: createVolatileManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
/**
 * Creates a new instance of a VolatileSurfaceManager given any
 * arbitrary SunVolatileImage.  An optional context Object can be supplied
 * as a way for the caller to pass pipeline-specific context data to
 * the VolatileSurfaceManager (such as a backbuffer handle, for example).
 *
 * For Unix platforms, this method returns either an X11- or a GLX-
 * specific VolatileSurfaceManager based on the GraphicsConfiguration
 * under which the SunVolatileImage was created.
 */
public VolatileSurfaceManager createVolatileManager(SunVolatileImage vImg,
                                                    Object context)
{
    GraphicsConfiguration gc = vImg.getGraphicsConfig();

    if (gc instanceof GLXGraphicsConfig) {
        return new GLXVolatileSurfaceManager(vImg, context);
    } else if(gc instanceof XRGraphicsConfig) {
        return new XRVolatileSurfaceManager(vImg, context);
    }else {
        return new X11VolatileSurfaceManager(vImg, context);
    }
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:24,代码来源:UnixSurfaceManagerFactory.java

示例6: GLXVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public GLXVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is not bitmask AND the GraphicsConfig supports the FBO
     *     extension
     */
    int transparency = vImg.getTransparency();
    GLXGraphicsConfig gc = (GLXGraphicsConfig) vImg.getGraphicsConfig();
    accelerationEnabled = gc.isCapPresent(CAPS_EXT_FBOBJECT)
            && transparency != Transparency.BITMASK;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:15,代码来源:GLXVolatileSurfaceManager.java

示例7: CGLVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public CGLVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is not bitmask AND the GraphicsConfig supports the FBO
     *     extension
     */
    int transparency = vImg.getTransparency();
    CGLGraphicsConfig gc = (CGLGraphicsConfig) vImg.getGraphicsConfig();
    accelerationEnabled = gc.isCapPresent(CAPS_EXT_FBOBJECT)
            && transparency != Transparency.BITMASK;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:15,代码来源:CGLVolatileSurfaceManager.java

示例8: WGLVolatileSurfaceManager

import sun.awt.image.SunVolatileImage; //导入方法依赖的package包/类
public WGLVolatileSurfaceManager(SunVolatileImage vImg, Object context) {
    super(vImg, context);

    /*
     * We will attempt to accelerate this image only under the
     * following conditions:
     *   - the image is not bitmask AND the GraphicsConfig supports the FBO
     *     extension
     */
    int transparency = vImg.getTransparency();
    WGLGraphicsConfig gc = (WGLGraphicsConfig) vImg.getGraphicsConfig();
    accelerationEnabled = gc.isCapPresent(CAPS_EXT_FBOBJECT)
            && transparency != Transparency.BITMASK;
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:15,代码来源:WGLVolatileSurfaceManager.java


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