fjoesne Posted February 13, 2014 Posted February 13, 2014 This is the default 3 display setting: { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } }Changing this to the following crashes the program at start. (the classic just not starting with no error message issue) To make use of this setting I have to start the game, change the config to this while it is still running and then start a mission. Feels kinda unecessary if you ask me. The reason i have to do it like this is because i have 2 different displays. 2 smaller displays in portrait mode on each side of the main display. Viewports = { Left = { x = 0; y = 0; width = 1050; height = 1680; viewDx = -1; viewDy = 0; aspect = aspect.ratio / 3; }, Center = { x = 1050; y = 0; width = 2560; height = 1680; viewDx = 0; viewDy = 0; aspect = aspect.ratio / 3; }, Right = { x = 1050 + 2560; y = 0; width = 1050; height = 1680; viewDx = 1; viewDy = 0; aspect = aspect.ratio / 3; } }
docfu Posted February 13, 2014 Posted February 13, 2014 There may be an additional setting you would have to do for this. I'm using two different width displays without problems(sometimes when adjusting settings the big one extends onto the little one...) Gui = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; } UIMainView = Gui Try reading: http://forums.eagle.ru/showthread.php?t=84270 for more information.
weeb Posted February 13, 2014 Posted February 13, 2014 Have a look at this link. Its very informative. http://forums.eagle.ru/showthread.php?t=60815&highlight=softth Just for info. I have 24", 27",24" set up as 1 screen using softth and it runs very well with bezel correction etc. All screens blend exactly with each other, straight lines, river, plane. Why 3 screens and not 1 big one, that's a heavy hit on any graphics card? Windows 7 64 Home Premium, i5 3570K (3.4 @ 4.4GHz), Asus P8Z77-V LX, 16GB dual channel 1600 ram, EVGA Nvidia GTX980ti, 240 GB OCZ SSD, 3 TB Raptor, Thrustmaster Warthog Hotas and Throttle, Saitek Pro Combat Rudder pedals.
Recommended Posts