What is Xcode doing with fonts?
I am trying to wrap my head around how Xcode is using bitmap fonts. When I define a point size that is good for a pixel font (for example, 8 pt) it looks fine on iphone/ipod. But when it is automatically scaled up for ipad, the font appears blurry. I have resampling/anti-aliasing turned OFF in my MMF project. Can anyone tell me if Xcode is actually pixel doubling the font at runtime on the the ipad? Or is it changing the point size of the font at runtime (in this case, 8pt --> 16pt)?
I am looking for a way to keep pixel fonts clean when they are used on an ipad.