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


Java GLXGraphicsConfig类代码示例

本文整理汇总了Java中sun.java2d.opengl.GLXGraphicsConfig的典型用法代码示例。如果您正苦于以下问题:Java GLXGraphicsConfig类的具体用法?Java GLXGraphicsConfig怎么用?Java GLXGraphicsConfig使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: createVolatileManager

import sun.java2d.opengl.GLXGraphicsConfig; //导入依赖的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

示例2: makeDefaultConfiguration

import sun.java2d.opengl.GLXGraphicsConfig; //导入依赖的package包/类
private void makeDefaultConfiguration() {
    if (defaultConfig == null) {
        int visNum = getConfigVisualId(0, screen);
        if (X11GraphicsEnvironment.isGLXAvailable()) {
            defaultConfig = GLXGraphicsConfig.getConfig(this, visNum);
            if (X11GraphicsEnvironment.isGLXVerbose()) {
                if (defaultConfig != null) {
                    System.out.print("OpenGL pipeline enabled");
                } else {
                    System.out.print("Could not enable OpenGL pipeline");
                }
                System.out.println(" for default config on screen " +
                                   screen);
            }
        }
        if (defaultConfig == null) {
            int depth = getConfigDepth(0, screen);
            boolean doubleBuffer = false;
            if (isDBESupported() && doubleBufferVisuals == null) {
                doubleBufferVisuals = new HashSet<>();
                getDoubleBufferVisuals(screen);
                doubleBuffer =
                    doubleBufferVisuals.contains(Integer.valueOf(visNum));
            }

            if (X11GraphicsEnvironment.isXRenderAvailable()) {
                if (X11GraphicsEnvironment.isXRenderVerbose()) {
                    System.out.println("XRender pipeline enabled");
                }
                defaultConfig = XRGraphicsConfig.getConfig(this, visNum,
                        depth, getConfigColormap(0, screen),
                        doubleBuffer);
            } else {
                defaultConfig = X11GraphicsConfig.getConfig(this, visNum,
                                    depth, getConfigColormap(0, screen),
                                    doubleBuffer);
            }
        }
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:41,代码来源:X11GraphicsDevice.java

示例3: makeDefaultConfiguration

import sun.java2d.opengl.GLXGraphicsConfig; //导入依赖的package包/类
private void makeDefaultConfiguration() {
    if (defaultConfig == null) {
        int visNum = getConfigVisualId(0, screen);
        if (X11GraphicsEnvironment.isGLXAvailable()) {
            defaultConfig = GLXGraphicsConfig.getConfig(this, visNum);
            if (X11GraphicsEnvironment.isGLXVerbose()) {
                if (defaultConfig != null) {
                    System.out.print("OpenGL pipeline enabled");
                } else {
                    System.out.print("Could not enable OpenGL pipeline");
                }
                System.out.println(" for default config on screen " +
                                   screen);
            }
        }
        if (defaultConfig == null) {
            int depth = getConfigDepth(0, screen);
            boolean doubleBuffer = false;
            if (isDBESupported() && doubleBufferVisuals == null) {
                doubleBufferVisuals = new HashSet();
                getDoubleBufferVisuals(screen);
                doubleBuffer =
                    doubleBufferVisuals.contains(Integer.valueOf(visNum));
            }

            if (X11GraphicsEnvironment.isXRenderAvailable()) {
                if (X11GraphicsEnvironment.isXRenderVerbose()) {
                    System.out.println("XRender pipeline enabled");
                }
                defaultConfig = XRGraphicsConfig.getConfig(this, visNum,
                        depth, getConfigColormap(0, screen),
                        doubleBuffer);
            } else {
                defaultConfig = X11GraphicsConfig.getConfig(this, visNum,
                                    depth, getConfigColormap(0, screen),
                                    doubleBuffer);
            }
        }
    }
}
 
开发者ID:JetBrains,项目名称:jdk8u_jdk,代码行数:41,代码来源:X11GraphicsDevice.java

示例4: makeConfigurations

import sun.java2d.opengl.GLXGraphicsConfig; //导入依赖的package包/类
private void makeConfigurations() {
    if (configs == null) {
        int i = 1;  // Index 0 is always the default config
        int num = getNumConfigs(screen);
        GraphicsConfiguration[] ret = new GraphicsConfiguration[num];
        if (defaultConfig == null) {
            ret [0] = getDefaultConfiguration();
        }
        else {
            ret [0] = defaultConfig;
        }

        boolean glxSupported = X11GraphicsEnvironment.isGLXAvailable();
        boolean xrenderSupported = X11GraphicsEnvironment.isXRenderAvailable();

        boolean dbeSupported = isDBESupported();
        if (dbeSupported && doubleBufferVisuals == null) {
            doubleBufferVisuals = new HashSet<>();
            getDoubleBufferVisuals(screen);
        }
        for ( ; i < num; i++) {
            int visNum = getConfigVisualId(i, screen);
            int depth = getConfigDepth (i, screen);
            if (glxSupported) {
                ret[i] = GLXGraphicsConfig.getConfig(this, visNum);
            }
            if (ret[i] == null) {
                boolean doubleBuffer =
                    (dbeSupported &&
                     doubleBufferVisuals.contains(Integer.valueOf(visNum)));

                if (xrenderSupported) {
                    ret[i] = XRGraphicsConfig.getConfig(this, visNum, depth,                                getConfigColormap(i, screen),
                            doubleBuffer);
                } else {
                   ret[i] = X11GraphicsConfig.getConfig(this, visNum, depth,
                          getConfigColormap(i, screen),
                          doubleBuffer);
                }
            }
        }
        configs = ret;
    }
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:45,代码来源:X11GraphicsDevice.java

示例5: makeConfigurations

import sun.java2d.opengl.GLXGraphicsConfig; //导入依赖的package包/类
private void makeConfigurations() {
    if (configs == null) {
        int i = 1;  // Index 0 is always the default config
        int num = getNumConfigs(screen);
        GraphicsConfiguration[] ret = new GraphicsConfiguration[num];
        if (defaultConfig == null) {
            ret [0] = getDefaultConfiguration();
        }
        else {
            ret [0] = defaultConfig;
        }

        boolean glxSupported = X11GraphicsEnvironment.isGLXAvailable();
        boolean xrenderSupported = X11GraphicsEnvironment.isXRenderAvailable();

        boolean dbeSupported = isDBESupported();
        if (dbeSupported && doubleBufferVisuals == null) {
            doubleBufferVisuals = new HashSet();
            getDoubleBufferVisuals(screen);
        }
        for ( ; i < num; i++) {
            int visNum = getConfigVisualId(i, screen);
            int depth = getConfigDepth (i, screen);
            if (glxSupported) {
                ret[i] = GLXGraphicsConfig.getConfig(this, visNum);
            }
            if (ret[i] == null) {
                boolean doubleBuffer =
                    (dbeSupported &&
                     doubleBufferVisuals.contains(Integer.valueOf(visNum)));

                if (xrenderSupported) {
                    ret[i] = XRGraphicsConfig.getConfig(this, visNum, depth,                                getConfigColormap(i, screen),
                            doubleBuffer);
                } else {
                   ret[i] = X11GraphicsConfig.getConfig(this, visNum, depth,
                          getConfigColormap(i, screen),
                          doubleBuffer);
                }
            }
        }
        configs = ret;
    }
}
 
开发者ID:JetBrains,项目名称:jdk8u_jdk,代码行数:45,代码来源:X11GraphicsDevice.java


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