util: add a separate file for panfrost 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 16:43:45 +02:00 committed by Marge Bot
parent 87860fca06
commit 8fb53f47b9
3 changed files with 12 additions and 5 deletions

View file

@ -1083,9 +1083,4 @@ TODO: document the other workarounds.
<option name="disable_explicit_sync_heuristic" value="true"/>
</application>
</device>
<device driver="panfrost">
<application name="all-default">
<option name="allow_rgb16_configs" value="false"/>
</application>
</device>
</driconf>

View file

@ -0,0 +1,8 @@
<?xml version="1.0"?>
<driconf>
<device driver="panfrost">
<application name="all-default">
<option name="allow_rgb16_configs" value="false"/>
</application>
</device>
</driconf>

View file

@ -249,6 +249,10 @@ if with_panfrost_vk
files_drirc += files('00-panvk-defaults.conf')
endif
if with_gallium_panfrost
files_drirc += files('00-panfrost-defaults.conf')
endif
if with_gallium_radeonsi
files_drirc += files('00-radeonsi-defaults.conf')
endif