I need to check dynamically if the used device supports openGL ES 2.0. How can i do that?
feedback
|
|
Yes. The following code will do the trick:
Read this for more info: http://www.learnopengles.com/android-lesson-one-getting-started/ You may also require want to restrict devices that don't support 2.0 from seeing your app in the marketplace by adding the following to your manifest:
| ||||
|
feedback
|
|
Determining OpenGL extensions : Implementations of OpenGL vary by Android device in terms of the extensions to the OpenGL ES API that are supported. These extensions include texture compressions, but typically also include other extensions to the OpenGL feature set. To determine what texture compression formats, and other OpenGL extensions, are supported on a particular device: Run the following code on your target devices to determine what texture compression formats are supported:
Warning: The results of this call vary by device! You must run this call on several target devices to determine what compression types are commonly supported. Review the output of this method to determine what OpenGL extensions are supported on the device. | ||||
feedback
|
|
In addition to checking in code in the ways that others have mentioned, if you want to restrct it in market to ONLY those devices with 2.0 then in manifest:
You should do both, I've had people install the apk directly on to unsuitable devices and had to deal with strange exceptions. Now I throw a runTime:
| |||
|
feedback
|
|
Never used OpenGL ES, but saw it has the same http://www.khronos.org/opengles/sdk/docs/man/xhtml/glGetString.xml | |||
|
feedback
|