Module: Mesa Branch: main Commit: 50a65e2e2b4d30eead16a1d214a0b575763de04b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=50a65e2e2b4d30eead16a1d214a0b575763de04b
Author: Mike Blumenkrantz <[email protected]> Date: Mon Feb 20 11:03:42 2023 -0500 driconf: add zink glthread disable for a game ref #8333 fixes #8328 cc: mesa-stable Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21424> --- src/util/00-mesa-defaults.conf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/util/00-mesa-defaults.conf b/src/util/00-mesa-defaults.conf index 4dcad37fcdc..7c94d47bbe4 100644 --- a/src/util/00-mesa-defaults.conf +++ b/src/util/00-mesa-defaults.conf @@ -960,6 +960,13 @@ TODO: document the other workarounds. <option name="radeonsi_zerovram" value="true" /> </application> </device> + <device driver="zink"> + <application name="Hyperdimension Neptunia Re;Birth1" executable="NeptuniaReBirth1.exe"> + <!-- glthread uploads need too much vram and exceed 32bit VA limit --> + <!-- https://gitlab.freedesktop.org/mesa/mesa/-/issues/8333 --> + <option name="mesa_glthread" value="false"/> + </application> + </device> <device driver="iris"> <application name="Middle Earth: Shadow of Mordor" executable="ShadowOfMordor"> <option name="vs_position_always_invariant" value="true" />
