0

为了工作,我正在开发一个非常专业的软件,它需要运行两个全屏应用程序,每个监视器上一个。为简单起见,我目前使用的是 LUbuntu 64 位,配备 AMD Radeon HD 显卡(目前不记得确切的版本,但它相当新)。

如果可能的话,我想坚持使用 SDL2,但如果我需要对其进行一些修改或移动到不同的库,我对此相当满意。

所以,我的问题是,是否可以在 Linux 的不同显示器上运行两个全屏应用程序(如果可以,我需要采取什么样的设置步骤)?枚举显示器以获得其左上角 x/y 位置的最佳选择是什么,以便我可以告诉 SDL 将我的窗口移动到该显示器上以全屏显示?

注意: 我没有将这个发布到 askubuntu,因为我不确定这个问题是否严格围绕 Ubuntu 平台。

更新:

这是来自的输出xrandr -q

Screen 0: minimum 320 x 200, current 3200 x 1080, maximum 3200 x 3200
DFP1 disconnected (normal left inverted right x axis y axis)
DFP2 disconnected (normal left inverted right x axis y axis)
DFP3 disconnected (normal left inverted right x axis y axis)
DFP4 disconnected (normal left inverted right x axis y axis)
DFP5 disconnected (normal left inverted right x axis y axis)
DFP6 disconnected (normal left inverted right x axis y axis)
DFP7 disconnected (normal left inverted right x axis y axis)
DFP8 disconnected (normal left inverted right x axis y axis)
DFP9 connected 1920x1080+1280+0 (normal left inverted right x axis y axis) 533mm x 312mm
   1280x1024      50.0 +   75.0     60.0     30.0     24.0  
   1920x1080      60.0 +   50.0*    59.9     30.0     25.0     30.0     24.0     30.0     30.0     24.0  
   1776x1000      50.0     59.9     25.0     24.0     30.0     30.0  
   1680x1050      50.0     60.0     30.0     24.0  
   1400x1050      50.0     60.0     30.0     24.0  
   1600x900       50.0     60.0     30.0     24.0  
   1440x900       50.0     59.9     30.0     24.0  
   1280x960       50.0     60.0     30.0     24.0  
   1280x800       50.0     59.8     30.0     24.0  
   1152x864       50.0     59.9     75.0     30.0     24.0  
   1280x768       50.0     59.8     30.0     24.0  
   1280x720       60.0     50.0     59.9     30.0     24.0  
   1024x768       50.0     75.0     70.1     30.0     24.0     60.0  
   1152x648       50.0     59.9  
   800x600        50.0     30.0     24.0     72.2     75.0     60.3     56.2  
   720x576        59.9     30.0     24.0     50.0  
   720x480        50.0     30.0     24.0     60.0     59.9  
   640x480        50.0     30.0     24.0     75.0     72.8     67.0     60.0     59.9  
DFP10 connected 1280x1024+0+0 (normal left inverted right x axis y axis) 376mm x 301mm
   1280x1024      60.0*+   76.0     75.0     72.0  
   1280x960       76.0     75.0     72.0     60.0  
   1152x864       75.0     60.0  
   1280x768       76.0     75.0     72.0     60.0  
   1280x720       76.0     75.0     72.0     60.0  
   1024x768       75.0     70.1     60.0  
   800x600        72.2     75.0     60.3  
   640x480        75.0     72.8     67.0     59.9  
   640x350        60.0     70.1  
CRT1 disconnected (normal left inverted right x axis y axis)

我已经尝试搜索一些论坛以更好地解释如何处理这些信息,看来我应该这样做:

xrandr --output DFP9 --auto --output DFP10 --auto

当我这样做时,我仍然只有一个显示(“:0”)。

4

2 回答 2

1

你的设置是什么?您实际上有 2 个单独的 X 显示器,还是使用 Xinerama 将两者结合起来?

如果您使用 2 个显示器,它们应该有自己的 -display 或 DISPLAY 环境变量。您可以使用它来执行新应用程序。

$ echo $DISPLAY
:0.0
$ xterm -display :0.0

在另一个显示器中打开一个外壳以获取您的另一个显示器环境变量。

还有-geometry,格式为[Wth,Ht+X+Y]

$ xterm -geometry 132x80+500+0

启用 Xinerama 时,您的其他显示通常是 +X+Y 偏移量。

当然,这确实需要应用程序处理命令行参数。然后在初始化窗口时将它们传递给 X。对于 xterm,宽度和高度是文本字符的单位,其中 X/Y 是屏幕像素。

于 2013-03-15T15:39:56.800 回答
0

如果您可以控制 X 配置,并且如果其他应用程序不会显示在生产工作站上,您可能需要禁用“Xinerama”功能并设置两个屏幕。然后你可以让你的应用程序连接:0.0:0.1从每个应用程序中获取屏幕大小。

于 2013-03-15T15:30:39.103 回答