Libgdx关于载入图片规格的问题
对于libgdx来说,对载入的图片要求是:宽高都必须是2的N次幂的图片才行,否则会提示:texture width and height must be powers of two。
好了,我们来查看一下源码:
if(Gdx.gl20 == null && (!MathUtils.isPowerOfTwo(width) || !MathUtils.isPowerOfTwo(height))) throw new GdxRuntimeException("texture width and height must be powers of two");
我们再看他这个判断宽高的方法是怎么写的:
static public boolean isPowerOfTwo (int value) { return value != 0 && (value & value - 1) == 0; }
很显然,只有参数为2的N次方时才返回真。那么问题是不是解决了呢 我把代码修改成为了:
static public boolean isPowerOfTwo (int value) { return value != 0 /*&& (value & value - 1) == 0*/; }
这样不就是可以载入任意图了么,哈哈。先别得意太早,测测看。我选了一张64X64的图,50X50的图来测试