Arm Community
Site
Search
User
Site
Search
User
Support forums
Mobile, Graphics, and Gaming forum
Tips & Tricks: OpenGL vs. OpenGL ES
Jump...
Cancel
Locked
Locked
Replies
3 replies
Subscribers
137 subscribers
Views
5468 views
Users
0 members are here
OpenGL ES
Mali-GPU
Options
Share
More actions
Cancel
Related
How was your experience today?
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion
Tips & Tricks: OpenGL vs. OpenGL ES
guestposter guestposter
over 12 years ago
Note: This was originally posted on 15th October 2009 at
http://forums.arm.com
As we come up with various tips and hints that might help application developers working on Mali GPUs we will be posting them here so that you have instant access to them prior to the hints being turned into formal knowledgebase articles or other documentation.
If there are questions that you have, we will do our best to answer them in a timely manner.
This first topic will cover general differences between coding for the OpenGL (desktop graphics library) and OpenGL ES (embedded system graphics library) APIs from Khronos...
Parents
guestposter guestposter
over 12 years ago
Note: This was originally posted on 27th October 2009 at
http://forums.arm.com
Some differences between OpenGL & OpenGL ES APIs:
OpenGL ES 1.1 and 2.0 are subsets of the full OpenGL standard. Some OpenGL functionality is not available in OpenGL ES:
No support for glBegin or glEnd. Instead, use vertex arrays and vertex buffer objects
Supported rasterization primitives are points, lines and triangles. Quads are not supported
There is no polynomial evaluation stage
Blocks of fragments can be sent directly to individual fragment operations
There is no support for display lists
For complete list, visit [url="
http://www.khronos.org/opengles/
"]
http://www.khronos.org/opengles/[/url]
Cancel
Vote up
0
Vote down
Cancel
Reply
guestposter guestposter
over 12 years ago
Note: This was originally posted on 27th October 2009 at
http://forums.arm.com
Some differences between OpenGL & OpenGL ES APIs:
OpenGL ES 1.1 and 2.0 are subsets of the full OpenGL standard. Some OpenGL functionality is not available in OpenGL ES:
No support for glBegin or glEnd. Instead, use vertex arrays and vertex buffer objects
Supported rasterization primitives are points, lines and triangles. Quads are not supported
There is no polynomial evaluation stage
Blocks of fragments can be sent directly to individual fragment operations
There is no support for display lists
For complete list, visit [url="
http://www.khronos.org/opengles/
"]
http://www.khronos.org/opengles/[/url]
Cancel
Vote up
0
Vote down
Cancel
Children
No data