madjestic n00b
Joined: 10 Oct 2013 Posts: 53
|
Posted: Fri May 05, 2023 3:35 pm Post subject: Issues with running Vulkan on integrated Intel GPU |
|
|
Hey guys, I have issues getting both vulkan and gl acceleration working on fairly recent integrated Intel GPU . It looks like if I am using
Code: | Option "AccelMethod" "sna" |
in my 30-modestting.conf, I am getting a good framerate with glxgears, but vkcube (from vulkan examlpes) fails to find `dri3`, while when I am setting
Code: | Option "AccelMethod" "glamor" |
, then I can run vkcube example, but glxgears framerate plummets.
So it looks like I've got things working separately, but I would like to have it all working together, if that's possible?
Here's the 30-modestting.conf that I am using (with commented out edits, reflecting the problem above):
Code: |
Section "Device"
Identifier "Intel Graphics Modesetting"
Driver "modesetting"
#Option "AccelMethod" "sna"
Option "AccelMethod" "glamor"
Option "DRI" "iris"
#Option "DRI" "3"
Option "TearFree" "true"
BusID "PCI:0:2:0"
Option "Monitor" "Monitor0"
Option "Backlight" "intel_backlight"
EndSection
Section "Monitor"
Identifier "Monitor0"
DisplaySize 340 190
EndSection
|
Thanks,
Vlad |
|