【发布时间】:2016-06-23 15:12:23
【问题描述】:
我需要以编程方式获取显示器的刷新率。
当我在命令行输入 xrandr (1.4.1, opensuse 13) 时,我得到:
Screen 0: minimum 8 x 8, current 1920 x 1200, maximum 16384 x 16384
VGA-0 disconnected primary (normal left inverted right x axis y axis)
DVI-D-0 connected 1920x1200+0+0 (normal left inverted right x axis y axis) 518mm x 324mm
1920x1200 60.0*+
1920x1080 60.0
1680x1050 60.0
1600x1200 60.0
1280x1024 60.0
1280x960 60.0
1024x768 60.0
800x600 60.3
640x480 59.9
HDMI-0 disconnected (normal left inverted right x axis y axis)
此结果已通过 nvidia-settings -q RefreshRate 等得到确认。
但是... 当我运行以下代码(来源:https://github.com/raboof/xrandr/blob/master/xrandr.c)时,使用 g++ 4.8.1(使用 -lX11 -lXext -lXrandr)编译:
int nsize;
int nrate;
short *rates;
XRRScreenSize *sizes;
Display *dpy = XOpenDisplay(NULL);
Window root = DefaultRootWindow(dpy);
XRRScreenConfiguration *conf = XRRGetScreenInfo(dpy, root);
printf ("Current rate: %d\n",XRRConfigCurrentRate(conf));
sizes = XRRConfigSizes(conf, &nsize);
printf(" SZ: Pixels Refresh\n");
for (int i = 0; i < nsize; i++) {
printf("%-2d %5d x %-5d", i, sizes[i].width, sizes[i].height);
rates = XRRConfigRates(conf, i, &nrate);
if (nrate)
printf(" ");
for (int j = 0; j < nrate; j++)
printf("%-4d", rates[j]);
printf("\n");
}
XRRFreeScreenConfigInfo(conf);
我明白了:
Current rate: 50
SZ: Pixels Refresh
0 1920 x 1200 50
1 1920 x 1080 51
2 1680 x 1050 52
3 1600 x 1200 53
4 1280 x 1024 54
5 1280 x 960 55
6 1024 x 768 56
7 800 x 600 57
8 640 x 480 58
9 1440 x 900 59
10 1366 x 768 60
11 1280 x 800 61
12 1280 x 720 62
为什么我会得到这个结果? 我做错了什么?
该软件使用带有 GLEW 的 OpenGL。这有什么影响吗? 我们确实调用了 glXQueryDrawable(dpy, drawable, GLX_SWAP_INTERVAL_EXT, &val) 但之后,我认为这不会有任何影响。
【问题讨论】:
-
附加信息:1-我最需要的是获得正确的刷新率 2-我只是在单个 C 文件(在我们的大项目之外)中输入了上面的代码 sn-p,编译它( g++ -o t0 test0.c -lX11 -lXrandr) 得到同样的错误结果。
标签: c++ c linux opensuse xrandr