Android OpenGL-ES VBO support or not? How can i check this?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.