如何在Ubuntu 15.10中的Haswell iGPU上运行英特尔驱动程序的DRI3?

我将在15.10从源头构建Vulkan驱动程序。 到目前为止它似乎适用于几个简单的例子,但有人提到它需要在这里启用DRI3: “intel驱动程序需要DRI3,所以要么通过xorg.conf启用它,要么删除intel_drv.so并使用模式设置驱动程序“ 。 我不知道该怎么做。

我尝试使用此部分添加/etc/X11/xorg.conf

 Section "Device" Identifier "Intel Graphics" Driver "intel" Option "DRI" "3" EndSection 

但是在重新启动时,我的/var/log/Xorg.0.log没有引用DRI3,还有几个引用到DRI2:

 [ 4.059] (II) glamor: EGL version 1.4 (DRI2): [ 4.064] (II) Loading sub module "dri2" [ 4.064] (II) LoadModule: "dri2" [ 4.064] (II) Module "dri2" already built-in [ 4.169] (II) modeset(0): [DRI2] Setup complete [ 4.169] (II) modeset(0): [DRI2] DRI driver: i965 [ 4.169] (II) modeset(0): [DRI2] VDPAU driver: i965 [ 4.180] (II) GLX: Initialized DRI2 GL provider for screen 0 

任何帮助,将不胜感激。

将以下代码添加到/etc/X11/xorg.conf对我/etc/X11/xorg.conf

 Section "Device" Identifier "Intel Graphics" Driver "intel" Option "SwapBuffersWait" "0" Option "DRI" "3" EndSection