GLKit and MSAA
Categories: iOS on Jan.04, 2012
Enable MSAA Anti-Aliasing in GLKit.
Just enable:
1 2 | GLKView *view = (GLKView *)self.view; view.drawableMultisample = GLKViewDrawableMultisample4X; |
Similar posts:
Categories: iOS on Jan.04, 2012
Enable MSAA Anti-Aliasing in GLKit.
Just enable:
1 2 | GLKView *view = (GLKView *)self.view; view.drawableMultisample = GLKViewDrawableMultisample4X; |
Similar posts:
February 14th, 2012 on 8:44 pm
Thank you. This is exactly what I needed.
In my case with GLKViewController with view that is GLKView, I added this to my setup (called from ViewDidLoad)
((GLKView*)self.view).drawableMultisample = GLKViewDrawableMultisample4X;