util: add a separate file for v3d drirc

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41731>
This commit is contained in:
Samuel Pitoiset 2026-05-21 17:24:41 +02:00 committed by Marge Bot
parent 0de4d3d9c6
commit 1ecb39ce59
3 changed files with 18 additions and 5 deletions

View file

@ -531,7 +531,6 @@ TODO: document the other workarounds.
<!-- Adaptive sync denylist follows below: -->
<application name="gnome-shell" executable="gnome-shell">
<option name="adaptive_sync" value="false" />
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
<application name="Desktop — Plasma" executable="plasmashell">
<option name="adaptive_sync" value="false" />
@ -580,7 +579,6 @@ TODO: document the other workarounds.
</application>
<application name="mutter" executable="mutter">
<option name="adaptive_sync" value="false" />
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
<application name="muffin" executable="muffin">
<option name="adaptive_sync" value="false" />
@ -630,9 +628,6 @@ TODO: document the other workarounds.
<application name="Dragon Player" executable="dragon">
<option name="adaptive_sync" value="false" />
</application>
<application name="Xorg" executable="Xorg">
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
<application name="gfxbench" executable="testfw_app">
<option name="mesa_glthread_app_profile" value="0" />

View file

@ -0,0 +1,14 @@
<?xml version="1.0"?>
<driconf>
<device driver="v3d">
<application name="gnome-shell" executable="gnome-shell">
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
<application name="mutter" executable="mutter">
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
<application name="Xorg" executable="Xorg">
<option name="v3d_nonmsaa_texture_size_limit" value="true" />
</application>
</device>
</driconf>

View file

@ -249,6 +249,10 @@ if with_gallium_asahi
files_drirc += files('00-asahi-defaults.conf')
endif
if with_gallium_v3d
files_drirc += files('00-v3d-defaults.conf')
endif
if with_asahi_vk
files_drirc += files('00-hk-defaults.conf')
endif