Drawing antialiased lines and circles

Monkey Targets Forums/iOS/Drawing antialiased lines and circles

Shinkiro1(Posted 2014) [#1]
Hi,

how does one achieve antialiased rendering of primitives on iOS?
I tried using
glEnable(GL_LINE_SMOOTH)

with no effect (using opengl.gles11)


dawlane(Posted 2014) [#2]
I would google this as I don't think that GL_LINE_SMOOTH works with 1.1.
Found this article https://nicolasgoles.com/blog/2010/07/tutorial-using-anti-aliasing-msaa-in-the-iphone/
But some articles out there I get the impression that you draw the objects again with the alpha turned down.


Shinkiro1(Posted 2014) [#3]
Because it was too much of a hassle I will use images instead.
Not ideal, but it works.