- Code: Select all
Thread: GLThread 377, Exception: java.lang.IllegalStateException: frame buffer couldn't be constructed: unknown error 0
at com.badlogic.gdx.graphics.glutils.FrameBuffer.build(FrameBuffer.java:178)
at com.badlogic.gdx.graphics.glutils.FrameBuffer.<init>(FrameBuffer.java:97)
The error points to this code here:
- Code: Select all
try
{
_frameBuffer= new FrameBuffer(Format.RGBA4444, (int)getWidth(), (int)getHeight(), false);
}
catch (IllegalStateException e)
{
_frameBuffer= new FrameBuffer(Format.RGBA8888, (int)getWidth(), (int)getHeight(), false); // This line, specifically, meaning the above also must fail but is caught by the try/catch
}
I originally added the try/catch because I thought these devices were crashing because they didn't support Format.RGBA4444. However, that's apparently not the case since they're still crashing with Format.RGBA8888.
Here are two of the devices that report this error (there are a few more, here are just two):
Acer Iconia Tab A100
Acer Iconia Tab A200
Anyone have any ideas? Appreciate it!
