No se pueden ejecutar aplicaciones con Vulkan

No se pueden ejecutar aplicaciones con Vulkan

Estoy en Arch Linux y después de la última actualización (supongo que esto está relacionado con la nueva versión de mesa cuando eliminan los controladores antiguos) no puedo ejecutar aplicaciones con vulkan. Obtuve los siguientes resultados cuando ejecuté vkcubeel comando y la interfaz de usuario se cerró inmediatamente:

Selected GPU 0: Intel(R) Xe Graphics (TGL GT2), type: IntegratedGpu
vulkan: No DRI3 support detected - required for presentation
Note: you can probably enable DRI3 in your Xorg config
Could not find both graphics and present queues

lspci | grep -es decir "3d|vga|vídeo":

0000:00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01)

gato /etc/X11/xorg.conf.d/20-intel.conf:

Section "Module"
  Load          "glx"
EndSection

Section "Device"
    Identifier  "Intel Graphics"
    Driver      "modesetting"
    Option      "AccelMethod"           "glamor"
    Option      "DRI"                   "3"
    Option      "Backlight"             "intel_backlight"
EndSection

Xorg.0.log: https://pastebin.com/xfwZ1ii2

Por favor, ayúdame a arreglar eso.

UPD: Reemplazo mi configuración de xorg con esto y ahora vulkan funciona bien.

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

Respuesta1

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

información relacionada