Skip to content

Commit

Permalink
mesa: cherry-pick fixes for software rendering fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 committed Sep 5, 2024
1 parent a946e0a commit 02a4d9a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pkgs/development/libraries/mesa/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, expat
, fetchCrate
, fetchFromGitLab
, fetchpatch
, file
, flex
, glslang
Expand Down Expand Up @@ -139,6 +140,18 @@ in stdenv.mkDerivation {

patches = [
./opencl.patch

# dril/swrast fixes
# FIXME: remove when backported upstream
(fetchpatch {
url = "https://gitlab.freedesktop.org/mesa/mesa/-/commit/06d417af80bc1f171cadc338e63a7aa75c877754.diff";
hash = "sha256-JbrygyjtgNcQlggv1X+3HWf4WRWdtyeEvg3jwthEspM=";
})

(fetchpatch {
url = "https://gitlab.freedesktop.org/mesa/mesa/-/commit/56ac37845487b62f495428b0f20d145489f621e2.diff";
hash = "sha256-J6P7k6SuOqRzmeqiiAc+QgBDp5nIBY+sPwvnQ+hlCW8=";
})
];

postPatch = ''
Expand Down

0 comments on commit 02a4d9a

Please sign in to comment.