DaVinci Resolve: Difference between revisions
imported>Klaymore Basic troubleshooting/AMD driver information |
imported>Spacebanana420 m Added intel driver section |
||
Line 8: | Line 8: | ||
Contrary to the [https://wiki.archlinux.org/title/DaVinci_Resolve#Installation Arch Wiki], DaVinci Resolve seems to work (on an RX 570) without switching to proprietary GPU drivers. | Contrary to the [https://wiki.archlinux.org/title/DaVinci_Resolve#Installation Arch Wiki], DaVinci Resolve seems to work (on an RX 570) without switching to proprietary GPU drivers. | ||
=== Intel === | |||
DaVinci Resolve has partial support for Intel GPUs on Linux. Audio playback works on the Fairlight page, but the video timeline does not work. To add Intel support, add the following setting to your <code>configuration.nix</code>: | |||
<syntaxhighlight lang="nix"> | |||
hardware.opengl = { | |||
enable = true; | |||
driSupport32Bit = true; | |||
extraPackages = with pkgs; [ | |||
intel-compute-runtime | |||
]; | |||
}; | |||
</syntaxhighlight> | |||