darthmelk wrote:I also own an Xperia X1 with 800x480 res. I think the easiest way would be to add a 2.4 resolution multiplier and get rid of the scummvm bar on the lower side of the screen.
(...)
Is it a good idea? Can it be done? Or is there any other plan to better support these WVGA devices?
Er, this is actually much harder than it sounds.
To explain:
Say you got a multiplier of 2. You got 4 pixels, like these:
12
34
If we stretch these pixels by a factor of 2, we basically copy each pixel to the right and bottom. So, the resulting image would look like:
1122
1122
3344
3344
This is not possible with a multiplier of 2.4, so your idea is not applicable - a pixel is a unit, you can't copy parts of it.
To stretch the screen with such a multiplier, we'd have to repeat pixels at intervals, which is much harder, and the resulting image would look distorted. i.e. we would have to copy the pixels on every Nth line, and every Nth column. This is much slower to perform in real time, and as mentioned, skews the image.