Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to check, programmatically, if a given OpenGL ES implementation supports non-POT textures?

share|improve this question
Does this answer your question? – Dan Jul 9 '12 at 12:14
@Dan Thanks! It gave me the right direction to look into. – Alex Jul 9 '12 at 12:29

1 Answer

up vote 2 down vote accepted

Finally, what worked for me on Android was:

static public boolean isNPOTSupported(GL10 gl) {

    String extensions = gl.glGetString(GL10.GL_EXTENSIONS);
    return extensions.indexOf("GL_OES_texture_npot") != -1;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.