Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Vulkan software rendering in Mesa v23.1.9 by adding Wayland dependency #20069

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions easybuild/easyconfigs/m/Mesa/Mesa-23.1.9-GCCcore-13.2.0.eb
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ dependencies = [
('libunwind', '1.6.2'),
('LLVM', '16.0.6'),
('X11', '20231019'),
('Wayland', '1.22.0'),
]

configopts = "-Dplatforms=x11 -Dosmesa=true -Dvulkan-drivers='' "
configopts += "-Dllvm=enabled -Dshared-llvm=enabled -Dlibunwind=enabled -Dglvnd=true"
configopts = "-Dplatforms=x11,wayland -Dosmesa=true -Dvulkan-drivers='swrast' -Dvulkan-layers='device-select' "
configopts += "-Dllvm=enabled -Dshared-llvm=enabled -Dlibunwind=enabled -Dglvnd=true "
configopts += "-Dvideo-codecs=vc1dec,h264dec,h264enc,h265dec,h265enc "

# Easybuild will automatically add appropriate Gallium drivers for the processor architecture of the host
# If you need a different configuration, it possible to override those values by setting your own configopts
Expand Down
Loading