Vulkan으로 앱을 실행할 수 없습니다

Vulkan으로 앱을 실행할 수 없습니다

저는 Arch Linux를 사용하고 있으며 마지막 업데이트 이후(오래된 드라이버를 제거할 때 새 버전의 메사와 관련이 있는 것 같습니다) vulkan으로 앱을 실행할 수 없습니다. 명령을 실행하면 다음 출력이 표시 vkcube되고 UI는 즉시 사라집니다.

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 -iE "3d|vga|비디오":

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

고양이 /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

그 문제를 해결할 수 있도록 도와주세요.

UPD: xorg 구성을 교체했는데 이제 vulkan이 제대로 작동합니다.

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

답변1

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

관련 정보