java - 使用 Slick2D TextureLoader 加载 PNG 图像时 LWJGL 挂起

标签 java opengl lwjgl slick2d

在 Mac OS X El Capitan、OpenGL 版本 4.1 上,我的 LWJGL 3.0 应用程序在调用 Slick2D 时挂起。函数TextureLoader.getTexture()

这是我尝试用来加载纹理的代码。它与主循环在同一线程上运行,并在窗口设置后调用。

FileInputStream file = new FileInputStream("src/AppIcon.png");
texture = TextureLoader.getTexture("PNG", file);

文件确实存在,并且当我注释掉纹理代码时代码工作正常,这就是这个方法

public int loadTexture(String filename){
    Texture texture = null;
    try{
        FileInputStream file = new FileInputStream(filename + ".png");
        //The app freezes here
        texture = TextureLoader.getTexture("png", file);
        //"LOADED" is never printed to the console.
        System.out.println("LOADED");
    }
    catch(FileNotFoundException e){
        e.printStackTrace();
    }
    catch(IOException e){
        e.printStackTrace();
    }
     return texture.getTextureID();
}

我尝试使用的纹理是 1024 x 1024 PNG 图像,

enter image description here

我还尝试过使用更小的 16 x 16 像素图像,

16x16

但我得到了相同的结果。

两个图像在物理上都没有问题,没有记录任何错误,控制台中打印的最后一个内容来自 Slick2D,说明

INFO:Use Java PNG Loader = true

这是操作系统特定的错误,还是我做错了什么?

最佳答案

事实证明,Slick2D 与 OS X 上的 GLFW 不兼容。因此,我不得不使用 stb绑定(bind),即LWJGL 3.0的STBImageorg.lwjgl.stb.STBImage

这是我使用的代码

public int loadTexture(String filename){
    ByteBuffer imageBuffer;
    try{
        imageBuffer = readFile(filename);
    }
    catch (IOException e) {
        throw new RuntimeException(e);
    }

    IntBuffer w = BufferUtils.createIntBuffer(1);
    IntBuffer h = BufferUtils.createIntBuffer(1);
    IntBuffer comp = BufferUtils.createIntBuffer(1);

    ByteBuffer image = STBImage.stbi_load_from_memory(imageBuffer, w, h, comp, 0);
    if(image == null){
        throw new RuntimeException("Failed to load image: " + STBImage.stbi_failure_reason());
    }

    this.width = w.get(0);
    this.height = h.get(0);
    this.comp = comp.get(0);

    if(this.comp == 3){
        GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGB, this.width, this.height, 0, GL11.GL_RGB, GL11.GL_UNSIGNED_BYTE, image);
    }
    else{
        GL11.glTexImage2D(GL11.GL_TEXTURE_2D, 0, GL11.GL_RGBA, this.width, this.height, 0, GL11.GL_RGBA, GL11.GL_UNSIGNED_BYTE, image);

        GL11.glEnable(GL11.GL_BLEND);
        GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
    }

    GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_LINEAR);
    GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_LINEAR);

    GL11.glEnable(GL11.GL_TEXTURE_2D);

    return GL11.glGenTextures();
}

private ByteBuffer readFile(String resource) throws IOException{
    File file = new File(resource);

    FileInputStream fis = new FileInputStream(file);
    FileChannel fc = fis.getChannel();

    ByteBuffer buffer = BufferUtils.createByteBuffer((int) fc.size() + 1);

    while(fc.read(buffer) != -1);

    fis.close();
    fc.close();
    buffer.flip();

    return buffer;
}

它按预期工作

enter image description here

关于java - 使用 Slick2D TextureLoader 加载 PNG 图像时 LWJGL 挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33851235/

相关文章:

java - 带 vector 的自由飞行相机 - 如何正确旋转?

JavaFX 在 HBox 的两个侧面板之间均匀分割空间

java - 数组随机问题

java - 是否有可能使 eclipse 后退/前进功能像 IntelliJ IDEA 中的那样工作

java - 在继续之前强制方法完成

Java-Slick2D : How to retrieve last key pressed?

java - Spring 中的注解周围

c++ - GLM 从旋转中获取方向?

c++ - 为什么我的一些立方体面没有按照我希望的方式呈现?

c++ - glReadPixels 函数返回错误 1282 (GL_INVALID_OPERATION)