| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/5df97c27dc8...c9b2f83a2fb
|
|
|
|
| |
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/a6edac37640...539bf3929b0
|
| |
|
|
|
|
| |
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/d3642a0e027...a03ce740bbb
|
|
|
|
|
|
|
| |
Example usage:
$ MESA_LOADER_DRIVER_OVERRIDE=crocus glxgears
See also https://gitlab.freedesktop.org/mesa/mesa/-/commit/17a1cc616371
|
|
|
|
|
|
|
| |
Changes: https://gitlab.freedesktop.org/mesa/mesa/-/compare/25020c125a9...c22267262ee
Notes:
svn path=/head/; revision=568056
|
|
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
|