LWJGLException:像素格式没有加速

时间:2016-07-04 09:24:23

标签: lwjgl

我正在使用eclipse开发自己的游戏,我尝试将其导出并在另一台计算机上进行测试。在我自己的计算机上,导出的游戏工作正常但不在另一个游戏上。我从命令行启动了jar,所以我可以看到错误,这是错误,在标题中提到,“Pixel format not accelerated”在这个函数中(在行“Display.create(...)”中):< / p>

public static void createDisplay() {
    System.out.println("test1");
    ContextAttribs attribs = new ContextAttribs(3, 2).withForwardCompatible(true).withProfileCore(true);

    try {
        System.out.println("test2");
        Display.setDisplayMode(new DisplayMode(WIDTH,HEIGHT));
        Display.create(new PixelFormat().withDepthBits(24), attribs);
        Display.setTitle("Our First Display!");

        System.out.println("test3");

        GL11.glEnable(GL13.GL_MULTISAMPLE);
    } catch (LWJGLException e) {
        e.printStackTrace();
    }
    GL11.glViewport(0,0, WIDTH, HEIGHT);
    lastFrameTime = getCurrentTime();
}

现在我的问题是,如何摆脱这个异常,所以我也可以在另一台计算机上玩游戏......

谢谢你的帮助:)

0 个答案:

没有答案