mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: mesa: Add radeon vulkan driver support for i686-linux.
* gnu/packages/gl.scm (mesa)[arguments]: Add "--with-vulkan-drivers" on i686-linux. Change Vulkan comments and TODO to reflect the changes.
This commit is contained in:
parent
8781c3d9fc
commit
abdb97f8ce
1 changed files with 4 additions and 2 deletions
|
@ -298,11 +298,13 @@ (define-public mesa
|
|||
;; are stuck at OpenGL 2.1 instead of OpenGL 3.0+.
|
||||
"--enable-texture-float"
|
||||
|
||||
;; Enable Vulkan on x86-64.
|
||||
;; TODO: Fix building Mesa with Vulkan drivers enabled on i686-linux.
|
||||
;; Enable Vulkan on i686-linux and x86-64-linux.
|
||||
,@(match (%current-system)
|
||||
("x86_64-linux"
|
||||
'("--with-vulkan-drivers=intel,radeon"))
|
||||
;; TODO: Fix intel driver on i686-linux.
|
||||
("i686-linux"
|
||||
'("--with-vulkan-drivers=radeon"))
|
||||
(_
|
||||
'("")))
|
||||
|
||||
|
|
Loading…
Reference in a new issue