支持 OpenGl ES 2.0 中的 glGenerateMipmap() 函数
Support the glGenerateMipmap() function in OpenGl ES 2.0
在 Khronos 文档中,对 glGenerateMipmap(GLenum target) 函数的支持从 OpenGL 3.0 开始。为什么GLES20也有这个功能class?:
GLES20.glGenerateMipmap(GLES20.GL_TEXTURE_2D);
或者OpenGL ES 2.0是否也支持自动生成mipmaps?
您引用的页面不是规范,而是 wiki。您还可以参考 desktop OpenGL pages rather than the OpenGL ES 页面。
glGenerateMipmap
OpenGL ES 页面明确指出 glGenerateMipmap
自 OpenGL ES 2.0 起提供。
无论如何,唯一的真相是 OpenGL (ES) 规范。
参见OpenGL ES 2.0 Full Specification- 3.7.11 Mipmap Generation:
Mipmaps can be generated with the command
void GenerateMipmap( enum target );
在 Khronos 文档中,对 glGenerateMipmap(GLenum target) 函数的支持从 OpenGL 3.0 开始。为什么GLES20也有这个功能class?:
GLES20.glGenerateMipmap(GLES20.GL_TEXTURE_2D);
或者OpenGL ES 2.0是否也支持自动生成mipmaps?
您引用的页面不是规范,而是 wiki。您还可以参考 desktop OpenGL pages rather than the OpenGL ES 页面。
glGenerateMipmap
OpenGL ES 页面明确指出 glGenerateMipmap
自 OpenGL ES 2.0 起提供。
无论如何,唯一的真相是 OpenGL (ES) 规范。
参见OpenGL ES 2.0 Full Specification- 3.7.11 Mipmap Generation:
Mipmaps can be generated with the command
void GenerateMipmap( enum target );