summaryrefslogtreecommitdiff
path: root/graphics/mesa-devel/files/patch-userptr (follow)
Commit message (Collapse)AuthorAgeFilesLines
* graphics/mesa-devel: update to 23.2.0.b.806Jan Beich2023-08-011-9/+9
| | | | Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/5df97c27dc8...c9b2f83a2fb
* graphics/mesa-devel: update to 23.2.0.b.320Jan Beich2023-07-201-15/+15
| | | | Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/a6edac37640...539bf3929b0
* graphics/mesa-devel: document upstreaming attempt for userptr workaroundJan Beich2022-09-261-0/+1
|
* graphics/mesa-devel: update to 22.2.b.1696Jan Beich2022-09-041-0/+24
| | | | Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/d3642a0e027...a03ce740bbb
* graphics/mesa-devel: expose crocus to replace i965Jan Beich2021-07-011-0/+24
| | | | | | | Example usage: $ MESA_LOADER_DRIVER_OVERRIDE=crocus glxgears See also https://gitlab.freedesktop.org/mesa/mesa/-/commit/17a1cc616371
* graphics/mesa-devel: update to 21.0.b.2806Jan Beich2021-03-111-7/+7
| | | | | | | Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/25020c125a9...c22267262ee Notes: svn path=/head/; revision=568056
* graphics/mesa-devel: work around userptr for anv on gen < 8 and iris computeJan Beich2020-11-261-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