How much more complex is it to draw simple curves, lines and circles in OpenGL ES rather than in Qua
- by mystify
Is OpenGL ES really so much faster? Why? And is it really so horrible complicated to draw such simple things in OpenGL ES compared to drawing these in Quartz 2D?
For example, I have a UIView subclass with -drawRect: implemented, where I draw some lines, curves and circles. Just simple paths, with some shadow.
What would I do in OpenGL ES? Isn't…