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
|
@ -298,11 +298,13 @@ also known as DXTn or DXTC) for Mesa.")
|
||||||
;; are stuck at OpenGL 2.1 instead of OpenGL 3.0+.
|
;; are stuck at OpenGL 2.1 instead of OpenGL 3.0+.
|
||||||
"--enable-texture-float"
|
"--enable-texture-float"
|
||||||
|
|
||||||
;; Enable Vulkan on x86-64.
|
;; Enable Vulkan on i686-linux and x86-64-linux.
|
||||||
;; TODO: Fix building Mesa with Vulkan drivers enabled on i686-linux.
|
|
||||||
,@(match (%current-system)
|
,@(match (%current-system)
|
||||||
("x86_64-linux"
|
("x86_64-linux"
|
||||||
'("--with-vulkan-drivers=intel,radeon"))
|
'("--with-vulkan-drivers=intel,radeon"))
|
||||||
|
;; TODO: Fix intel driver on i686-linux.
|
||||||
|
("i686-linux"
|
||||||
|
'("--with-vulkan-drivers=radeon"))
|
||||||
(_
|
(_
|
||||||
'("")))
|
'("")))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue