summaryrefslogtreecommitdiff
path: root/graphics/mesa-devel/files/patch-userptr (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-01graphics/mesa-devel: update to 23.2.0.b.806Jan Beich1-9/+9
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/5df97c27dc8...c9b2f83a2fb
2023-07-20graphics/mesa-devel: update to 23.2.0.b.320Jan Beich1-15/+15
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/a6edac37640...539bf3929b0
2022-09-26graphics/mesa-devel: document upstreaming attempt for userptr workaroundJan Beich1-0/+1
2022-09-04graphics/mesa-devel: update to 22.2.b.1696Jan Beich1-0/+24
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/d3642a0e027...a03ce740bbb
2021-07-01graphics/mesa-devel: expose crocus to replace i965Jan Beich1-0/+24
Example usage: $ MESA_LOADER_DRIVER_OVERRIDE=crocus glxgears See also https://gitlab.freedesktop.org/mesa/mesa/-/commit/17a1cc616371
2021-03-11graphics/mesa-devel: update to 21.0.b.2806Jan Beich1-7/+7
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/25020c125a9...c22267262ee Notes: svn path=/head/; revision=568056
2020-11-26graphics/mesa-devel: work around userptr for anv on gen < 8 and iris computeJan Beich1-0/+51
Vulkan on Intel Broadwell or later uses softpin but older need userptr: /* We only allow 48-bit addresses with softpin because knowing the actual * address is required for the vertex cache flush workaround. */ device->supports_48bit_addresses = (device->info.gen >= 8) && device->has_softpin && device->gtt_size > (4ULL << 30 /* GiB */); device->use_softpin = device->has_softpin && device->supports_48bit_addresses; PR: 244877 Submitted by: Austin Shafer <ashafer@badland.io> Notes: svn path=/head/; revision=556348