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

I've been asked to create shaders for our Android engine and I'm a little confused. So far the engine has been built on the premise that we use GL10 instances to be responsbile for the drawing of everything. But because shaders are OpenGL 2.0 if I were to set the context client version to 2.0 and draw a simple scene (say a cube) nothing appears whereas it does if I use the default 1.0.

I'm not entirely sure how I should proceed - do I need to create different engines based on the highest level version of OpenGLES supported by the device? Use the higest possible regardless of what it can support (assuming backward compatibility)?

Any help/suggestions appreciated...

share|improve this question

1 Answer

up vote 5 down vote accepted

OpenGL ES 2.x is not backward compatible with OpenGL ES 1.x. You have to write different code to support both of them.

share|improve this answer
Ok in case anybody else is curious. I wrote a static class to determine what were the capabilities of the phone on startup, taking consideration of false positives by catching NoSuchMethodErrors. Based on the results I use a single renderer and version of the engine and apply specific instructions i.e. if it can have a programmable pipeline then use it, otherwise used the fixed pipeline. – batterj2 Jun 20 '11 at 15:41

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.