README 942 B

123456789101112131415161718192021222324252627282930313233343536
  1. A Vulkan-based translation layer for Direct3D 10/11 which allows running
  2. 3D applications on Linux using Wine.
  3. To enable dxvk for a wine prefix use:
  4. setup_dxvk install
  5. To disable dxvk use:
  6. setup_dxvk uninstall
  7. Before running the above commands a specific wine prefix can be set.
  8. export WINEPREFIX=/path/to/.wine-prefix
  9. Since wine 4.0 it is possible to use wine's own DXGI implementation
  10. instead of the one provided by dxvk. To use wine's DXGI implementation:
  11. setup_dxvk install --without-dxgi
  12. This will allow to use vkd3d with D3D12 while still being able to use
  13. dxvk with D3D11. However some configuration options with dxvk's DXGI
  14. will have no effect.
  15. For more information see:
  16. https://github.com/doitsujin/dxvk/wiki/DXGI
  17. To enable 64-bit support wine must be built with wine64.
  18. WIN64=yes ./wine.SlackBuild
  19. To build on a pure Slackware64 install 32-bit wine must be disabled.
  20. WIN32=no WIN64=yes ./wine.SlackBuild