Stefan Dirsch
c7ad8ef77d
- needed to fix build of Mesa 23.1 * Mesa-drivers: -Dshader-cache=enabled * Mesa: -Dxlib-lease=enabled * recommended for both Mesa and Mesa-drivers to avoid some scary messages when comparing fds: -Dallow-kcmp=enabled - Credits for figuring this out go to "llyyr" <llyyr.public@gmail.com> - gbm files are no longer needed to be removed manually for -drivers build - VDPAU support for r300 has been dropped with Mesa 23.1 - supersedes n_no-sse2-on-ix86-except-for-intel-drivers.patch - Update to bugfix release 23.1.1 - adjusted u_dep_xcb.patch - Update to 23.1.0 * new feature release * some highlights + Our OpenCL implementation Rusticl added support for AMD GPUs. + Both ANV (Intel) and RADV (AMD) got initial support for Vulkan Video decoding. + Vulkan Graphics Pipeline Libraries (GPL) are now supported in RADV. - adjusted n_stop-iris-flicker.patch - supersedes U_ReturnME.patch - meson option "-Ddri-drivers" has been removed; wasn't used any longer by us --> killed it OBS-URL: https://build.opensuse.org/request/show/1092012 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1209
21 lines
983 B
Diff
21 lines
983 B
Diff
commit 5d6f7baf3bc40a85b09e4088c8c3bccec6a7c82d
|
|
Author: Scott Bradnick <scott.bradnick@suse.com>
|
|
Date: Tue May 24 14:47:53 2022 -0400
|
|
|
|
Adjusting 'iris_batch.c' per 'https://gitlab.freedesktop.org/mesa/mesa/-/issues/5731'.
|
|
|
|
Index: mesa-23.1.0/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
===================================================================
|
|
--- mesa-23.1.0.orig/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
+++ mesa-23.1.0/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
@@ -273,8 +273,7 @@ i915_batch_submit(struct iris_batch *bat
|
|
(struct drm_i915_gem_exec_object2) {
|
|
.handle = bo->gem_handle,
|
|
.offset = bo->address,
|
|
- .flags = bo->real.kflags | (written ? EXEC_OBJECT_WRITE : 0) |
|
|
- (iris_bo_is_external(bo) ? 0 : EXEC_OBJECT_ASYNC),
|
|
+ .flags = bo->real.kflags | (written ? EXEC_OBJECT_WRITE : 0),
|
|
};
|
|
++validation_count;
|
|
}
|