如何在OpenGL ES中加载和绑定纹理?

时间:2012-09-12 12:42:05

标签: java android opengl-es

所以,我在res / drawable-hdpi(例如text.png)文件夹中有一个纹理,如何加载这个纹理并用glBindTexture绑定它?

1 个答案:

答案 0 :(得分:9)

Bitmap img = BitmapFactory.decodeResource(context.getResources(), R.drawable.text);
int[] texId = new int[1];
GLES20.glGenTextures(1, texId, 0);
GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, texId[0]);
GLUtils.texImage2D(GLES20.GL_TEXTURE_2D, 0, img, 0);
GLES20.glTexParameterf(GLES20.GL_TEXTURE_2D, GLES20.GL_TEXTURE_MIN_FILTER, GLES20.GL_LINEAR);
  1. 将资源解码为位图
  2. 生成纹理
  3. 绑定纹理
  4. 上传纹理
  5. 设置缩小过滤器的完整性