Reputation: 7604
Is http://www.khronos.org/opengles/sdk/docs/man/ the end all be all, or is there another source that tells you exactly which functions are supported by OpenGL ES 2.0?
For example, is glUniformXY()
supported by OpenGL ES 2.0? I don't see it on that page but it doesn't make since for it not to be.
Upvotes: 0
Views: 110
Reputation: 1910
I tend to lookup function declarations directly in the header file: http://www.khronos.org/registry/gles/api/2.0/gl2.h It is much faster.
If the system support OpenGL ES2.0 all those functions are defined and should conform to the standard. If you want vendor specific methods or behaviours you need to query for OpenGL extensions and then dynamically resolve the functions
Upvotes: 3