To view parent comment, click here.
To read all comments associated with this story, please click here.
Unless you are talking about the technique of pixel doubling a display (or another multiplier that results in integers, not floats) I strongly disagree. When I resize vectors (typically in Photoshop) to a by a non-even multiplier such as 1.33 (used by Nexus 7) i often have to re-arrange and redraw a lot of my graphics. With 2X (Retina Apple stuff, some Android devices) I just resize and all of it looks sharp (I might still do some adjustment, but I need to do way less than with non-even numbers.)
Even if you export everything to vectors you still have to think about where on the pixel grid those vectors actually fall (this will affect how sharp things look).
Bjango have a excellent blog post on this subject if you want to know more: http://bjango.com/articles/everythingisagrid/
The XAML stack handles all of this easily.
By default the layout is adaptive, though you can opt-in to a fixed layout with a styled letterbox (Often even showing relevant content).
The only place where scaling by non whole multipliers is a problem is when using bitmapped content, which is why Microsoft has guidelines to where possible provide images at specific scales.
Even then, you can control the quality of the scaling of Bitmaps in the event that you don't control the scales that they're presented at (Remote images or something).
On top of that, you can tell the Layout engine to round its measurements and not put you on a sub-pixel boundary (Which causes fuzziness even with vector drawing) using UseLayoutRounding.
There's very simple rules developers should follow on Windows 8 and they'll be fine scaling to higher resolutions and differing aspect ratios.





Member since:
2005-11-29
Resolution independence is a solved problem. Where issues start to arise are on displays with different aspect ratios. The app will scale, but things will look different.
Windows 8 solves this by having a developer choose between letter boxing and showing more content.
Works well for apps (which likely will want to show more content) and games (which sometimes will prefer to letterbox).