Stefan Dirsch
3480334669
the code in the function saw further fixes later on in the 24.2 branch. - integrated changes by Andreas Schwab <schwab@suse.de> * enable glamor also for driver build * update rust crates + syn 2.0.39 + proc_macro2 1.0.86 * enable valgrind also on riscv64 * added libvdpau_gallium package for generic VDPAU state tracker * switch from "swrast" to "softpipe,llvmpipe" drivers * use "-Dllvm-orcjit=true" for riscv64 build * added libgallium to Mesa-dri package - re-disable llvm for non-driver build by switching from "swrast" to "softpipe" for gallium drivers in that case - make previous changelog a bit nicer - Update to release 24.2.2 --> https://docs.mesa3d.org/relnotes/24.2.2 --> https://docs.mesa3d.org/relnotes/24.2.1 --> https://docs.mesa3d.org/relnotes/24.2.0 - refreshed the following patches with quilt: * U_fix-mpeg1_2-decode-mesa-20.2.patch * n_add-Mesa-headers-again.patch * n_stop-iris-flicker.patch * u_dep_xcb.patch * u_fix_rust_bindgen.patch - dropped U_radeonsi-vcn-Add-decode-DPB-buffers-as-CS-dependency.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1328
19 lines
970 B
Diff
19 lines
970 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-24.2.2/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
===================================================================
|
|
--- mesa-24.2.2.orig/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
+++ mesa-24.2.2/src/gallium/drivers/iris/i915/iris_kmd_backend.c
|
|
@@ -318,7 +318,6 @@ i915_batch_submit(struct iris_batch *bat
|
|
uint32_t flags = EXEC_OBJECT_SUPPORTS_48B_ADDRESS | EXEC_OBJECT_PINNED;
|
|
flags |= bo->real.capture ? EXEC_OBJECT_CAPTURE : 0;
|
|
flags |= bo == batch->screen->workaround_bo ? EXEC_OBJECT_ASYNC : 0;
|
|
- flags |= iris_bo_is_external(bo) ? 0 : EXEC_OBJECT_ASYNC;
|
|
flags |= written ? EXEC_OBJECT_WRITE : 0;
|
|
|
|
index_for_handle[bo->gem_handle] = validation_count;
|