软用者 发表于 2014-4-22 20:15:55

非标准分辨率好像是微软搞出来的,因为会带给用户麻烦,坚持用标准分辨率就没这些麻烦了。我一向都是反对宽屏的,但现在只能无奈了。

hxcan 发表于 2014-4-23 09:03:29

fbdev带分辨率参数就启动不了X。

fbdev不带分辨率参数,运行glxinfo | grep render的结果:

bash-4.2# glxinfo | grep render
direct rendering: Yes
    GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer,
OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 3.4, 128 bits)
    GL_NV_conditional_render, GL_NV_depth_clamp, GL_NV_fog_distance,

这是表示有硬件加速吗?太神奇了。

sejishikong 发表于 2014-4-23 11:54:24

原帖由 hxcan 于 2014-4-23 09:03 发表 http://forum.linuxfans.org/images/common/back.gif
fbdev带分辨率参数就启动不了X。

fbdev不带分辨率参数,运行glxinfo | grep render的结果:

bash-4.2# glxinfo | grep render
direct rendering: Yes
    GLX_MESA_multithread_makecurrent, GLX_MESA_query_renderer, ...
是有硬件加速,fbdev有变化了么。不过分辨率恐怕还是挺难的,用intel驱动启动的时候试过改分辨率没有。

haulm 发表于 2014-4-24 01:35:54

显示这一块我又做了调整,这一次把 20-gupset.conf 移出 /etc/X11/xorg.conf.d,并且不再使用 modesetting 做为默认驱动,xorg 配置索性是空的,20-gpuset.conf 现在改成用 vesa 驱动。
#!/bin/bash
mypci=`/usr/sbin/lspci|/usr/bin/grep VGA|/usr/bin/grep VirtualBox`
if [ "$mypci" ]
then
/usr/bin/mv /etc/X11/gpuset.conf.bak /etc/X11/xorg.conf.d/20-gpuset.conf
fi
myintel=`/usr/sbin/lspci|/usr/bin/grep VGA|/usr/bin/grep Intel\ Corporation\ 4\ Series`
if [ "$myintel" ]
then
/usr/bin/mv /etc/X11/gpuset.conf.bak /etc/X11/xorg.conf.d/20-gpuset.conf
fi
/usr/bin/rm /etc/X11/gpuset.conf.bak

hxcan 发表于 2014-4-24 17:17:06

intel驱动,带分辨率参数,启动不了X。

haulm 发表于 2014-4-24 21:28:53

此类显示芯片在P2已经默认设定为VESA驱动。
页: 1 [2]
查看完整版本: 3.0p1中的intel gma x4500 显卡驱动问题