util: add a separate file for r600 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:51:29 +02:00 committed by Marge Bot
parent f67ca9c529
commit 88c42258f8
3 changed files with 12 additions and 7 deletions

View file

@ -952,13 +952,6 @@ TODO: document the other workarounds.
</application>
</device>
<device driver="r600">
<application name="Tomb Raider 2013" executable="TombRaider">
<option name="mesa_extension_override" value="-GL_ARB_shader_image_load_store" />
</application>
</device>
<!--
The android game hall of shame:

View file

@ -0,0 +1,8 @@
<?xml version="1.0"?>
<driconf>
<device driver="r600">
<application name="Tomb Raider 2013" executable="TombRaider">
<option name="mesa_extension_override" value="-GL_ARB_shader_image_load_store" />
</application>
</device>
</driconf>

View file

@ -273,6 +273,10 @@ if with_gallium_zink
files_drirc += files('00-zink-defaults.conf')
endif
if with_gallium_r600
files_drirc += files('00-r600-defaults.conf')
endif
drirc_gen = files('drirc_gen.py')
if with_tests