mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-04 17:28:19 +02:00
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:
parent
f67ca9c529
commit
88c42258f8
3 changed files with 12 additions and 7 deletions
|
|
@ -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:
|
||||
|
||||
|
|
|
|||
8
src/util/00-r600-defaults.conf
Normal file
8
src/util/00-r600-defaults.conf
Normal 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>
|
||||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue