Browser zoom and Stage3D
I noticed new Flash player versions (since 18 I think) works differently with browser zoom. Before, a zoom action (Ctrl+- in Google Chrome) caused onResize event and changes stageWidth and stageHeight. Right now stageWidth is not changing and only Event.BROWSER_ZOOM_CHANGE event fired.
It's good for display list games, they looks better now. But all my Stage3D (Starling actually) games goes blurry for zoom factor more 100%.
For example I have a game 800x600px. Before for browser zoom factor 150% I have stage size 1200x900px, same back buffer size and all looks perfect. Now I've got stage size 800x600 (and back buffer size) upscaled to 1200x900.
I tried to set bigger back buffer size manually using actual stage size and Stage.browserZoomFactor, I tried wantsBestResolutionOnBrowserZoom parameter, but can't get the good quality. Looks like it can't render in bigger rectangle than native stage size. I tested Chrome, IE, Yandex browsers, Win 8.1, FP 18.0.0.209.
How can I fix this?