Please consider making the demo's target resolution and aspect ratio selectable. Widescreen displays with 16:10 aspect ratio and HDTV screens with 16:9 aspect ratio are increasingly common - your demo should support this properly if possible.
Atm i am working on a windows project, using DX9 and 800x600 on a widescreen notebook, where the screen looks good.
Some mins ago, i saw my program on an older 4:3 monitor and i was really shocked because the screen looks like shit due fact of the aspect ratio changing to a widescreen.
I would like to add a setup where the user can select screenmode and aspect ratio but i dont really know how to manage this.
As example we have following PsydoCode:
InitScreen( 800, 600, 32 ) ; width, height, depth
Repeat
DrawTexture( 0, 0, 800, 120 ) ; x,y,width, height
DrawTexture( 0, 480, 800, 120 )
DrawText ( 100, 100, 50, "Text" ) ; x, y, FontSize, String
Until
The question is, how and where must i change the psydocode to fit my screens on any aspect ratio like ( 4:3, 16:9, 16:10 ) ? Does someone has experience with this and know how to solve this problem on an easy way? thanks