README 608 B

1234567891011121314151617181920
  1. Note: for Vulkan to work DRI3 needs to be enabled.
  2. The file "20-intel.conf" was created by the suggestion of
  3. the Vulkan git page, found here:
  4. https://github.com/SaschaWillems/Vulkan/wiki/Quick-start-guide
  5. "In order to use Vulkan on Ubuntu you need to enable DRI3, which is disabled by
  6. default. This is not specific to my examples, but a Vulkan driver
  7. requirement."
  8. https://github.com/SaschaWillems/Vulkan/issues/226#issuecomment-242749268
  9. cat << EOF > /etc/X11/xorg.conf.d/20-intel.conf
  10. Section "Device"
  11. Identifier "Intel Graphics"
  12. Driver "intel"
  13. Option "DRI" "3"
  14. EndSection
  15. EOF