Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
特定の OpenGL ES 実装が非 POT テクスチャをサポートしているかどうかをプログラムで確認する方法は?
最後に、Androidでうまくいったのは次のとおりです。
static public boolean isNPOTSupported(GL10 gl) { String extensions = gl.glGetString(GL10.GL_EXTENSIONS); return extensions.indexOf("GL_OES_texture_npot") != -1; }