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,
这是表示有硬件加速吗?太神奇了。 原帖由 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驱动启动的时候试过改分辨率没有。 显示这一块我又做了调整,这一次把 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 intel驱动,带分辨率参数,启动不了X。 此类显示芯片在P2已经默认设定为VESA驱动。
页:
1
[2]