Module: Mesa Branch: master Commit: 668ed9599393de8b0a587c983da5b103249abc78 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=668ed9599393de8b0a587c983da5b103249abc78
Author: Eric Anholt <[email protected]> Date: Tue Mar 20 15:43:42 2012 -0700 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]> --- 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 755174a..2d92878 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> _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
