Tagged Questions
16
votes
7answers
16k views
OpenGL ES iPhone - drawing anti aliased lines
Normally, you'd use something like:
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable(GL_BLEND);
glEnable(GL_LINE_SMOOTH);
glLineWidth(2.0f);
glVertexPointer(2, GL_FLOAT, 0, points);
...
4
votes
3answers
2k views
Anti-aliasing not working when resizing a UIWebView
I'd like to add a Web View to my app at 60% scale (like seen in Safari in the browse other windows view):
Notice how the content looks nice and Aliased!
If I try and add the same Web view to my ...
2
votes
2answers
592 views
Disabling Anti-Aliasing for fonts
I'm writing a retro type game for the iPhone, and need to render a pixel style font to the screen. However, it looks nice and sharp when I run it in the simulator, but not when I run it on the device. ...
2
votes
3answers
5k views
CALayer and CGGradientRef anti-aliasing?
I'm having an odd issue with CALayer drawing for the iPhone. I have a root layer which adds a bunch of sublayers representing "bubbles". The end result is supposed to look something like this:
...
1
vote
2answers
2k views
iPhone Animation: how to anti-alias?
I was looking at some animations in my iPhone app and felt like it was kind of ugly. And then I undertsood it: it just doesn't animate through subpixel states.
So, in case I use usual ...
0
votes
0answers
111 views
iPhone - How do I draw to an EAGLview with anti-aliasing?
I would like to draw to my EAGLView as usual but with anti-aliasing. I'm familiar with the concept of drawing to a 4x sized buffer and then scaling that down to the screen, but copying and pasting the ...