android opengl es 1.1纹理压缩即时

时间:2011-08-26 18:02:52

标签: android opengl-es compression textures

我必须使用纹理压缩,因为我的应用目前正在使用高达100MB的纹理ram。

我正在从Views创建纹理,因此无法以压缩格式创建它们。我如何在运行中使用ETC1 / ATC / PVRTC压缩它们并将它们发送到gpu?我试过了:

GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, ETC1.ETC1_RGB8_OES, bitmap, 0);

我也试过手机支持的其他压缩格式,但纹理总是白色的。输入位图是RGB_565,并且禁用了mip-maps。

是否可以将位图作为纹理发送到opengl 1.1,以便在android上自动压缩,就像在PC上一样?

2 个答案:

答案 0 :(得分:4)

在Arne Bergene Fossaa的帮助下,我得到了这个解决方案:

int size = m_TexBitmap.getRowBytes() * m_TexBitmap.getHeight();
ByteBuffer bb = ByteBuffer.allocateDirect(size); // size is good
bb.order(ByteOrder.nativeOrder());
m_TexBitmap.copyPixelsToBuffer(bb);
bb.position(0);

ETC1Texture etc1tex;
// RGB_565 is 2 bytes per pixel
//ETC1Texture etc1tex = ETC1Util.compressTexture(bb, m_TexWidth, m_TexHeight, 2, 2*m_TexWidth);

final int encodedImageSize = ETC1.getEncodedDataSize(m_TexWidth, m_TexHeight);
ByteBuffer compressedImage = ByteBuffer.allocateDirect(encodedImageSize).order(ByteOrder.nativeOrder());
// RGB_565 is 2 bytes per pixel
ETC1.encodeImage(bb, m_TexWidth, m_TexHeight, 2, 2*m_TexWidth, compressedImage);
etc1tex = new ETC1Texture(m_TexWidth, m_TexHeight, compressedImage);

//ETC1Util.loadTexture(GL10.GL_TEXTURE_2D, 0, 0, GL10.GL_RGB, GL10.GL_UNSIGNED_SHORT_5_6_5, etc1tex);
gl.glCompressedTexImage2D(GL10.GL_TEXTURE_2D, 0, ETC1.ETC1_RGB8_OES, m_TexWidth, m_TexHeight, 0, etc1tex.getData().capacity(), etc1tex.getData());

bb = null;
compressedImage = null;
etc1tex = null;

我知道 ETC1Util.compressTexture ETC1Util.loadTexture ,但他们提供了损坏的纹理。好消息是我从原来的内存消耗从100MB减少到26MB。但是这个解决方案很慢。即使它是在具有最小优先级的单独线程上完成的,渲染线程也完全被阻止。有更好的方式吗?或者我是否必须在新设备上首次运行时创建这些ETC1纹理并将其保存到SD卡中以便以后重复使用?

答案 1 :(得分:1)

您无法通过OpenGL ES执行此操作 - 仅支持ETC解压缩。 ETC压缩对于快速和好的做法并不是一件容易的事情 - 你可能会看看http://devtools.ericsson.com/etc并在你的程序中实现etcpack。