Android OpenGL-ES VBO support or not? How can i check this?
Thanks
|
|
|
Some phones support it, some do not. Generally, VBOs are mandatory in OpenGL 1.1, so if the device reports
as 1.1 or higher (you can also write the app manifest file so that 1.1 is required for the installation) then they are supported. If the device support OpenGL ES 1.0 only, you should check the return value of
whether it contains ARB_vertex_buffer_object or not. Probably it will. For (slightly) related information about various GL capabilities of Android devices, you can find some at this question: OpenGL extensions available on different Android devices. |
|||||
|