DaVinci Resolve: Difference between revisions
IntangibleW (talk | contribs) m Update status of wayland support |
SeniorMatt (talk | contribs) →Intel: Added documentation for older Intel OpenCL support before 12th Gen. |
||
| Line 75: | Line 75: | ||
=== Intel === | === 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 | 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 one of the option to your <code>configuration.nix</code>: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
| Line 82: | Line 82: | ||
enable32Bit = true; | enable32Bit = true; | ||
extraPackages = with pkgs; [ | extraPackages = with pkgs; [ | ||
intel-compute-runtime | intel-compute-runtime # For Intel 12th Gen and newer | ||
intel-compute-runtime-legacy1 # For Intel Gen 8, 9, 11 | |||
]; | ]; | ||
}; | }; | ||