diff options
author | Eric Anholt <[email protected]> | 2012-03-20 15:43:42 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-03-21 09:47:57 -0700 |
commit | 668ed9599393de8b0a587c983da5b103249abc78 (patch) | |
tree | c225776f41dae24c1a5e11f367ae05e7077580a3 /src/mesa/drivers/dri/common/drirc | |
parent | b4082f492b4b55df4c636445e47b97d1f1e4b5b2 (diff) |
drirc: Add missing XML attributes that made the driconf application whine.
These are used for pretty presentation of the application name in the
UI.
Tested-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/common/drirc')
-rw-r--r-- | src/mesa/drivers/dri/common/drirc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/common/drirc b/src/mesa/drivers/dri/common/drirc index 755174afdd5..2d92878520a 100644 --- a/src/mesa/drivers/dri/common/drirc +++ b/src/mesa/drivers/dri/common/drirc @@ -1,15 +1,15 @@ <driconf> <device screen="0" driver="i965"> - <application executable="Sanctuary"> + <application name="Unigine Sanctuary" executable="Sanctuary"> <option name="force_glsl_extensions_warn" value="true" /> </application> - <application executable="Tropics"> + <application name="Unigine Tropics" executable="Tropics"> <option name="force_glsl_extensions_warn" value="true" /> </application> - <application executable="heaven_x86"> + <application name="Unigine Heaven (32-bit)" executable="heaven_x86"> <option name="force_glsl_extensions_warn" value="true" /> </application> - <application executable="heaven_x64"> + <application name="Unigine Heaven (64-bit)" executable="heaven_x64"> <option name="force_glsl_extensions_warn" value="true" /> </application> </device> |